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.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AttachmentDemo.Model
|
|
|
|
|
{
|
|
|
|
|
public class AttachmentInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 附件标识码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string BSM { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 地块类型
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string TBLX { get; set; } //
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 地块基本信息表中的标识码字段
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string TBBSM { get; set; } //
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 6位县级行政区代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string XZQDM { get; set; } //
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 需带格式后缀,如*.jpg、*.png、*.mp4等
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string FJMC { get; set; } //需带格式后缀,如*.jpg、*.png、*.mp4等
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 参考加密信息表证书代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ZSDM { get; set; } //参考加密信息表证书代码
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 拍照人员的姓名
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PSRY { get; set; } //拍照人员的姓名
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 拍摄俯仰角
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PSFYJ { get; set; } //拍摄俯仰角
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 拍摄角度
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PSJD { get; set; } //拍摄角度
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 拍摄横滚角
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PSHGJ { get; set; } //拍摄横滚角
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 拍摄点经度
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Longitude { get; set; } //拍摄点经度
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 拍摄点纬度
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Latitude { get; set; } //拍摄点纬度
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 拍摄时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PSSJ { get; set; } // 拍摄时间
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 附件哈希值
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string FJHXZ { get; set; } // 附件哈希值
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 校验码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string JYM { get; set; } //校验码
|
|
|
|
|
}
|
|
|
|
|
}
|