using System.Text.Json.Serialization; namespace DataSharing.Share.Dtos.Province.XieTong.Send; /// /// 服务工单上报 /// public class SendCaseInfo { /// /// 服务工单标题 /// [JsonPropertyName("CASE_TITLE")] public string CaseTitle { get; set; } /// /// 服务代表姓名 /// [JsonPropertyName("CASE_REGISTER")] public string CaseRegister { get; set; } /// /// 服务代表工号 /// [JsonPropertyName("CASE_REGISTERNO")] public string CaseRegisterNo { get; set; } /// /// 登记时间 /// [JsonPropertyName("CASE_DATE")] public DateTime CaseDate { get; set; } /// /// 诉求渠道 /// [JsonPropertyName("CASE_SOURCE")] public string CaseSource { get; set; } /// /// 联系电话 /// [JsonPropertyName("PHONE_NUMBER")] public string PhoneNumber { get; set; } /// /// 服务对象名称 /// [JsonPropertyName("APPLICANT_NAME")] public string AppLicantName { get; set; } /// /// 服务对象性别 /// [JsonPropertyName("APPLICANT_SEX")] public string AppLicantSex { get; set; } /// /// 服务对象年龄 /// [JsonPropertyName("APPLICANT_AGE")] public string AppLicantAge { get; set; } /// /// 证件号码 /// [JsonPropertyName("APPLICANT_ID")] public string AppLicantId { get; set; } /// /// 证件类型 /// [JsonPropertyName("CERTIFICATE_TYPE")] public string CertifiCateType { get; set; } /// /// 诉求类型 /// [JsonPropertyName("CASE_TYPE")] public string CaseType { get; set; } /// /// 诉求归口 /// [JsonPropertyName("CASE_ACCORD")] public string CaseAccord { get; set; } /// /// 诉求内容 /// [JsonPropertyName("CASE_CONTENT")] public string CaseContent { get; set; } /// /// 处理方式 /// [JsonPropertyName("CASE_PROCESS_TYPE")] public string CaseProcessType { get; set; } /// /// 是否公开 /// [JsonPropertyName("CASE_ISPUBLIC")] public string CaseIsPublic { get; set; } = "0"; /// /// 是否保密 /// [JsonPropertyName("CASE_ISSECRECT")] public string CaseIsSecrect { get; set; } = "0"; /// /// 是否回访-工单是否需要回访 /// [JsonPropertyName("CASE_ISVISIT")] public string CaseIsVisit { get; set; } = "1"; /// /// 紧急程度 /// [JsonPropertyName("CASE_ISURGENT")] public string CaseIsUrgent { get; set; } /// /// 经纬度 /// [JsonPropertyName("CASE_LNGLAT")] public string CaseLngLat { get; set; } /// /// 诉求情感 /// [JsonPropertyName("CASE_EMOTION")] public string CaseEmotion { get; set; } /// /// 诉求详细地址 /// [JsonPropertyName("CASE_ADDRESS")] public string CaseAddress { get; set; } /// /// 事发时间 /// [JsonPropertyName("EVENT_DATE")] public DateTime? EventDate { get; set; } /// /// 主题工单类型 /// [JsonPropertyName("THEME_SERIAL")] public string ThemeSerial { get; set; } = "05"; /// /// 是否存在拓展信息 /// [JsonPropertyName("IS_EXTENDS")] public string IsExtends { get; set; } /// /// 服务工单编号 /// [JsonPropertyName("CASE_SERIAL")] public string CaseSerial { get; set; } /// /// 行政区划代码 /// [JsonPropertyName("AREA_CODE")] public string AreaCode { get; set; } /// /// 材料标识 /// [JsonPropertyName("CLIENG_GUID")] public string CliengGuid { get; set; } }