using SqlSugar;
using System.ComponentModel;
using XF.Domain.Repository;
namespace Sharing.DaoShu110.Dtos
{
///
/// 道枢受理工单表
///
[Description("道枢受理工单表-发送")]
public class PoliceSendChainAlarmDs : CreationModificationEntity
{
///
/// 流水号
///
[SugarColumn(ColumnDescription = "接警单编号", ColumnDataType = "varchar(35)")]
public string SerialNumber { get; set; }
///
/// 接警员编号
///
[SugarColumn(ColumnDescription = "接警员编号", ColumnDataType = "varchar(30)")]
public string RegisterNo { get; set; }
///
/// 接警单编号
///
[SugarColumn(ColumnDescription = "接警单编号", ColumnDataType = "varchar(35)")]
public string AlarmReceiptNumber { get; set; }
///
/// 报警电话
///
[SugarColumn(ColumnDescription = "报警电话", ColumnDataType = "varchar(20)")]
public string CallPoliceNumber { get; set; }
///
/// 报警电话用户名
///
[SugarColumn(ColumnDescription = "报警电话用户名", ColumnDataType = "varchar(20)")]
public string CallPoliceName { get; set; }
///
/// 联系电话
///
[SugarColumn(ColumnDescription = "联系电话", ColumnDataType = "varchar(20)")]
public string PhoneNumber { get; set; }
///
/// 报警地址
///
[SugarColumn(ColumnDescription = "报警地址", ColumnDataType = "varchar(200)")]
public string CallPoliceAddress { get; set; }
///
/// 警情类别代码
///
[SugarColumn(ColumnDescription = "警情类别代码", ColumnDataType = "varchar(50)", IsNullable = true)]
public string PoliceTypeCode { get; set; }
///
/// 警情类别名称
///
[SugarColumn(ColumnDescription = "警情类别名称", ColumnDataType = "varchar(50)", IsNullable = true)]
public string PoliceTypeName { get; set; }
///
/// 报警内容
///
[SugarColumn(ColumnDescription = "报警内容", ColumnDataType = "varchar(2000)")]
public string CallPoliceContent { get; set; }
///
/// 管辖单位代码
///
[SugarColumn(ColumnDescription = "管辖单位代码", ColumnDataType = "varchar(50)", IsNullable = true)]
public string JurisdictionalUnitCode { get; set; }
///
/// 管辖单位名称
///
[SugarColumn(ColumnDescription = "管辖单位名称", ColumnDataType = "varchar(50)", IsNullable = true)]
public string JurisdictionalUnitName { get; set; }
///
/// 管辖单位电话
///
[SugarColumn(ColumnDescription = "管辖单位电话", ColumnDataType = "varchar(20)", IsNullable = true)]
public string JurisdictionalUnitNumber { get; set; }
///
/// 报警时间
///
[SugarColumn(ColumnDescription = "报警时间")]
public DateTime? CallPoliceTime { get; set; }
///
/// 推送时间
///
[SugarColumn(ColumnDescription = "推送时间")]
public DateTime? PushTime { get; set; }
///
/// 接警单位代码
///
[SugarColumn(ColumnDescription = "接警单位代码", ColumnDataType = "varchar(50)")]
public string AlarmReceivingUnitCode { get; set; }
///
/// 接警单位名称
///
[SugarColumn(ColumnDescription = "接警单位名称", ColumnDataType = "varchar(50)")]
public string AlarmReceivingUnitName { get; set; }
///
/// 接警类型
///
[SugarColumn(ColumnDescription = "接警类型", ColumnDataType = "varchar(50)")]
public string AlarmReceptionType { get; set; }
///
/// 行政区划代码
///
[SugarColumn(ColumnDescription = "行政区划代码", ColumnDataType = "varchar(50)")]
public string AreaCode { get; set; }
///
/// 工单编号
///
[SugarColumn(ColumnDescription = "工单编号", ColumnDataType = "varchar(50)",IsNullable =true)]
public string OrderId { get; set; }
}
}