|
@@ -20,7 +20,7 @@ public class Industry : CreationSoftDeleteEntity
|
|
|
/// 标题追加信息
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription ="标题追加信息")]
|
|
|
- public string TitleSuffix { get; set; }
|
|
|
+ public string? TitleSuffix { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 审批部门Id
|
|
@@ -38,7 +38,7 @@ public class Industry : CreationSoftDeleteEntity
|
|
|
/// 受理类型
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription ="受理类型")]
|
|
|
- public string AcceptType { get; set; }
|
|
|
+ public string? AcceptType { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 受理类型代码
|
|
@@ -56,7 +56,7 @@ public class Industry : CreationSoftDeleteEntity
|
|
|
/// 网络员发放红包金额(单位:分)
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "网络员发放红包金额(单位:分)")]
|
|
|
- public int? GuiderReadPackAmount { get; set; }
|
|
|
+ public int GuiderReadPackAmount { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 是否启用
|
|
@@ -74,13 +74,13 @@ public class Industry : CreationSoftDeleteEntity
|
|
|
/// 宫格说明文本
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription ="宫格说明文本")]
|
|
|
- public string TxtRemarks { get; set; }
|
|
|
+ public string? TxtRemarks { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 关怀说明
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription ="关怀说明")]
|
|
|
- public string TxtCareRemarks { get; set; }
|
|
|
+ public string? TxtCareRemarks { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 排序
|
|
@@ -98,63 +98,63 @@ public class Industry : CreationSoftDeleteEntity
|
|
|
/// 页面Url
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription ="页面Url")]
|
|
|
- public string PageUrl { get; set; }
|
|
|
+ public string? PageUrl { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 关怀页面Url
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription ="关怀页面Url")]
|
|
|
- public string PageCareUrl { get; set; }
|
|
|
+ public string? PageCareUrl { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 关联宣传学习
|
|
|
/// 从字典中取"公告类型"
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription ="关联宣传学习")]
|
|
|
- public string BulletinTypePublicityId { get; set; }
|
|
|
+ public string? BulletinTypePublicityId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 关联宣传学习
|
|
|
/// 从字典中取"公告类型"
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "关联宣传学习")]
|
|
|
- public string BulletinTypePublicityName { get; set; }
|
|
|
+ public string? BulletinTypePublicityName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 关联操作指引
|
|
|
/// 从字典中取"公告类型"
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "关联操作指引")]
|
|
|
- public string BulletinTypeGuideId { get; set; }
|
|
|
+ public string? BulletinTypeGuideId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 关联操作指引
|
|
|
/// 从字典中取"公告类型"
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "关联操作指引")]
|
|
|
- public string BulletinTypeGuideame { get; set; }
|
|
|
+ public string? BulletinTypeGuideame { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 背景图片 url
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "背景图片 url")]
|
|
|
- public string BackgroundImgUrl { get; set; }
|
|
|
+ public string? BackgroundImgUrl { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// Banner 图片 url
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "Banner 图片 url")]
|
|
|
- public string BannerImgUrl { get; set; }
|
|
|
+ public string? BannerImgUrl { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 宫格图
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "宫格图")]
|
|
|
- public string CellImgUrl { get; set; }
|
|
|
+ public string? CellImgUrl { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 关怀宫格图
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "关怀宫格图")]
|
|
|
- public string CareCellImgUrl { get; set; }
|
|
|
+ public string? CareCellImgUrl { get; set; }
|
|
|
}
|