using System.Text.Json.Serialization;
namespace Hotline.Share.Dtos.DataSharing.DaoShu110
{
///
/// 道枢受理工单表
///
public class ChainAlarm_DS
{
///
/// 流水号
///
[JsonPropertyName("LSH")]
[MDisplayName("流水号")]
[VRequired]
public string SerialNumber { get; set; }
///
/// 接警员编号
///
[JsonPropertyName("JJYBH")]
[MDisplayName("接警员编号")]
[VRequired]
public string RegisterNo { get; set; }
///
/// 接警单编号
///
[JsonPropertyName("JJDBH")]
[MDisplayName("接警单编号")]
[VRequired]
public string AlarmReceiptNumber { get; set; }
///
/// 报警电话
///
[JsonPropertyName("BJDH")]
[MDisplayName("报警电话")]
[VRequired]
public string CallPoliceNumber { get; set; }
///
/// 报警电话用户名
///
[JsonPropertyName("BJDHYHM")]
[MDisplayName("报警电话用户名")]
[VRequired]
public string CallPoliceName { get; set; }
///
/// 联系电话
///
[JsonPropertyName("LXDH")]
[MDisplayName("联系电话")]
[VRequired]
public string PhoneNumber { get; set; }
///
/// 报警地址
///
[JsonPropertyName("BJDZ")]
[MDisplayName("报警地址")]
[VRequired]
public string CallPoliceAddress { get; set; }
///
/// 警情类别代码
///
[JsonPropertyName("JQLBDM")]
public string PoliceTypeCode { get; set; }
///
/// 警情类别名称
///
[JsonPropertyName("JQLBMC")]
public string PoliceTypeName { get; set; }
///
/// 报警内容
///
[JsonPropertyName("BJNR")]
[MDisplayName("报警内容")]
[VRequired]
public string CallPoliceContent { get; set; }
///
/// 管辖单位代码
///
[JsonPropertyName("GXDWDM")]
public string JurisdictionalUnitCode { get; set; }
///
/// 管辖单位名称
///
[JsonPropertyName("GXDWMC")]
public string JurisdictionalUnitName { get; set; }
///
/// 管辖单位电话
///
[JsonPropertyName("GXDWDH")]
public string JurisdictionalUnitNumber { get; set; }
///
/// 报警时间
///
[JsonPropertyName("BJSJ")]
[MDisplayName("报警时间")]
[VRequired]
public string CallPoliceTime { get; set; }
///
/// 推送时间
///
[JsonPropertyName("TSSJ")]
[MDisplayName("推送时间")]
[VRequired]
public string PushTime { get; set; }
///
/// 接警单位代码
///
[JsonPropertyName("JJDWDM")]
[MDisplayName("接警单位代码")]
[VRequired]
public string AlarmReceivingUnitCode { get; set; }
///
/// 接警单位名称
///
[JsonPropertyName("JJDWMC")]
[MDisplayName("接警单位名称")]
[VRequired]
public string AlarmReceivingUnitName { get; set; }
///
/// 接警类型
///
[JsonPropertyName("JJLX")]
[MDisplayName("接警类型")]
[VRequired]
public string AlarmReceptionType { get; set; }
///
/// 行政区划代码
///
[JsonPropertyName("XZQHDM")]
[MDisplayName("行政区划代码")]
[VRequired]
public string AreaCode { get; set; }
}
}