using SqlSugar;
using System.ComponentModel;
using XF.Domain.Repository;
namespace Hotline.DataSharing.Province.XieTong.Receive
{
///
/// 服务工单交办补充诉求
///
[Description("服务工单交办补充诉求")]
public class DsSupplyCaseInfo : CreationModificationEntity
{
///
/// 补充人员
///
[SugarColumn(ColumnDescription = "补充人员", ColumnDataType = "varchar(200)")]
public string SupplyName { get; set; }
///
/// 补充时间
///
[SugarColumn(ColumnDescription = "补充时间")]
public DateTime? SupplyTime { get; set; }
///
/// 补充内容
///
[SugarColumn(ColumnDescription = "补充内容", ColumnDataType = "text")]
public string SupplyContent { 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";
}
}