|
@@ -12,8 +12,8 @@ public class OrderExtension : CreationEntity
|
|
|
/// <summary>
|
|
|
/// 工单类型
|
|
|
/// </summary>
|
|
|
- public string OrderType { get; set; }
|
|
|
- public string OrderTypeCode { get; set; }
|
|
|
+ public string? OrderType { get; set; }
|
|
|
+ public string? OrderTypeCode { get; set; }
|
|
|
|
|
|
#region 投诉人信息
|
|
|
|
|
@@ -79,7 +79,7 @@ public class OrderExtension : CreationEntity
|
|
|
/// <summary>
|
|
|
/// 企业名称
|
|
|
/// </summary>
|
|
|
- public string EnterpriseName { get; set; }
|
|
|
+ public string? EnterpriseName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 统一社会信用代码
|
|
@@ -89,7 +89,7 @@ public class OrderExtension : CreationEntity
|
|
|
/// <summary>
|
|
|
/// 注册地址
|
|
|
/// </summary>
|
|
|
- public string RegisterAddress { get; set; }
|
|
|
+ public string? RegisterAddress { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 注册号
|
|
@@ -122,27 +122,27 @@ public class OrderExtension : CreationEntity
|
|
|
/// <summary>
|
|
|
/// 商品分类/品牌
|
|
|
/// </summary>
|
|
|
- public string BrandCode { get; set; }
|
|
|
+ public string? BrandCode { get; set; }
|
|
|
|
|
|
- public string Brand { get; set; }
|
|
|
+ public string? Brand { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 消费金额,只能填写数字,且只能填写非负数
|
|
|
/// </summary>
|
|
|
- public decimal Amount { get; set; }
|
|
|
+ public decimal? Amount { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 客体类别
|
|
|
/// </summary>
|
|
|
- public string ObjectClassifyCode { get; set; }
|
|
|
+ public string? ObjectClassifyCode { get; set; }
|
|
|
|
|
|
- public string ObjectClassify { get; set; }
|
|
|
+ public string? ObjectClassify { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 销售方式
|
|
|
/// </summary>
|
|
|
- public string SalesModeCode { get; set; }
|
|
|
- public string SalesMode { get; set; }
|
|
|
+ public string? SalesModeCode { get; set; }
|
|
|
+ public string? SalesMode { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 电商平台,销售方式为“网购”时展示该字段且必填
|
|
@@ -234,14 +234,14 @@ public class OrderExtension : CreationEntity
|
|
|
/// <summary>
|
|
|
/// 投诉问题类别
|
|
|
/// </summary>
|
|
|
- public string ComplainClassifyCode { get; set; }
|
|
|
+ public string? ComplainClassifyCode { get; set; }
|
|
|
|
|
|
- public string ComplainClassify { get; set; }
|
|
|
+ public string? ComplainClassify { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 争议发生时间
|
|
|
/// </summary>
|
|
|
- public DateTime OccurrenceTime { get; set; }
|
|
|
+ public DateTime? OccurrenceTime { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 投诉目标,销售方式为“网购”时展示该字段且必填
|
|
@@ -260,7 +260,7 @@ public class OrderExtension : CreationEntity
|
|
|
/// 诉求内容,多选
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDataType = "json", IsJson = true)]
|
|
|
- public List<Kv> ComplainTypes { get; set; } = new();
|
|
|
+ public List<Kv>? ComplainTypes { get; set; }
|
|
|
|
|
|
#endregion
|
|
|
|
|
@@ -269,9 +269,9 @@ public class OrderExtension : CreationEntity
|
|
|
/// <summary>
|
|
|
/// 举报问题类别
|
|
|
/// </summary>
|
|
|
- public string ReportClassifyCode { get; set; }
|
|
|
+ public string? ReportClassifyCode { get; set; }
|
|
|
|
|
|
- public string ReportClassify { get; set; }
|
|
|
+ public string? ReportClassify { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 举报目标,销售方式为“网购”时展示该字段且必填
|