You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Kingo.PluginServiceInterface
|
|
|
|
|
{
|
|
|
|
|
public interface IProofManager
|
|
|
|
|
{
|
|
|
|
|
List<T> GetProofInfoList<T>(string pJCBH);
|
|
|
|
|
|
|
|
|
|
List<T> GetProofInfoList<T>(object pGeo, string pAreaScale);
|
|
|
|
|
|
|
|
|
|
void Clear();
|
|
|
|
|
}
|
|
|
|
|
public class ProofInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 调查人员
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string DCRY { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 外业核实情况
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string WYHSQK { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 调查时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string DCSJ { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 三调地类代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SDDLDM { get; set; }
|
|
|
|
|
public string JCBH { get; set; }
|
|
|
|
|
public string BGDL { get; set; }
|
|
|
|
|
public string BGFW { get; set; }
|
|
|
|
|
public string WBGLX { get; set; }
|
|
|
|
|
public string BZ { get; set; }
|
|
|
|
|
public object ImgList { get; set; }
|
|
|
|
|
//public ProofInfo()
|
|
|
|
|
//{
|
|
|
|
|
//ImgList = new List<object>();
|
|
|
|
|
//}
|
|
|
|
|
}
|
|
|
|
|
}
|