using SqlSugar; using System.ComponentModel; using XF.Domain.Repository; namespace Hotline.DataSharing.Province.XieTong.Receive { /// /// 上报工单处理结果/退回 /// [Description("上报工单处理结果/退回")] public class DsGetCaseReultSend : CreationModificationEntity { /// /// 答复单位 /// [SugarColumn(ColumnDescription = "答复单位", ColumnDataType = "varchar(200)")] public string DeptName { get; set; } /// /// 答复时间 /// [SugarColumn(ColumnDescription = "答复时间")] public DateTime? FinishTime { get; set; } /// /// 答复人员 /// [SugarColumn(ColumnDescription = "答复人员", ColumnDataType = "varchar(200)")] public string FinishName { get; set; } /// /// 办理情况 /// [SugarColumn(ColumnDescription = "办理情况", ColumnDataType = "text")] public string FinishNote { get; set; } /// /// 办理操作 /// [SugarColumn(ColumnDescription = "办理操作", ColumnDataType = "varchar(10)")] public string FinishType { get; set; } /// /// 办理单位 /// [SugarColumn(ColumnDescription = "办理单位", ColumnDataType = "varchar(200)")] public string EndDept { get; set; } /// /// 办理人员 /// [SugarColumn(ColumnDescription = "办理人员", ColumnDataType = "varchar(200)", IsNullable = true)] public string EndName { get; set; } /// /// 联系时间 /// [SugarColumn(ColumnDescription = "联系时间", IsNullable = true)] public DateTime? ConcactTime { get; set; } /// /// 联系方式 /// [SugarColumn(ColumnDescription = "联系方式", ColumnDataType = "varchar(50)")] public string ConcactType { get; set; } /// /// 签收时间 /// [SugarColumn(ColumnDescription = "签收时间")] public DateTime? SignTime { get; set; } /// /// 反馈时间 /// [SugarColumn(ColumnDescription = "反馈时间")] public DateTime? FdBackTime { get; set; } /// /// 交办时间 /// [SugarColumn(ColumnDescription = "交办时间")] public DateTime? SendTime { get; set; } /// /// 反馈意见 /// [SugarColumn(ColumnDescription = "反馈意见", ColumnDataType = "text")] public string FdBack { get; set; } /// /// 办理时长 /// [SugarColumn(ColumnDescription = "办理时长")] public decimal? HandletimeLong { get; set; } /// /// 任务单关联 guid /// [SugarColumn(ColumnDescription = "任务单关联 guid", ColumnDataType = "varchar(50)", IsNullable = true)] public string TrowGuid { get; set; } /// /// 退回类型 /// [SugarColumn(ColumnDescription = "退回类型", ColumnDataType = "varchar(20)", IsNullable = true)] public string BackType { get; set; } /// /// 材料标识 /// [SugarColumn(ColumnDescription = "材料标识", ColumnDataType = "varchar(50)")] public string CliengGuid { get; set; } /// /// 服务工单编号 /// [SugarColumn(ColumnDescription = "服务工单编号", ColumnDataType = "varchar(50)")] public string CaseSerial { get; set; } /// /// 行政区划代码 /// [SugarColumn(ColumnDescription = "行政区划代码", ColumnDataType = "varchar(24)")] public string AreaCode { get; set; } /// /// 同步状态 0:待同步; 1:同步成功; 2:同步失败; /// [SugarColumn(ColumnDescription = "同步状态", ColumnDataType = "varchar(1)", IsNullable = true)] public string SyncState { get; set; } = "1"; } }