|
@@ -11,70 +11,70 @@ namespace Model
|
|
/// 名称
|
|
/// 名称
|
|
/// </summary>
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "名称", Length = 50, ColumnName = "group_name")]
|
|
[SugarColumn(ColumnDescription = "名称", Length = 50, ColumnName = "group_name")]
|
|
- public string GroupName { get; set; }
|
|
|
|
|
|
+ public string groupName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// <summary>
|
|
/// 说明
|
|
/// 说明
|
|
/// </summary>
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "说明", Length = 200, ColumnName = "group_remark")]
|
|
[SugarColumn(ColumnDescription = "说明", Length = 200, ColumnName = "group_remark")]
|
|
- public string GroupRemark { get; set; }
|
|
|
|
|
|
+ public string groupRemark { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// <summary>
|
|
/// 版本号
|
|
/// 版本号
|
|
/// </summary>
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "版本号", Length = 20, ColumnName = "group_version")]
|
|
[SugarColumn(ColumnDescription = "版本号", Length = 20, ColumnName = "group_version")]
|
|
- public string GroupVersion { get; set; }
|
|
|
|
|
|
+ public string groupVersion { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// <summary>
|
|
/// ID
|
|
/// ID
|
|
/// </summary>
|
|
/// </summary>
|
|
- [SugarColumn(ColumnDescription = "ID", ColumnName = "id")]
|
|
|
|
- public int Id { get; set; }
|
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "ID", IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")]
|
|
|
|
+ public int id { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// <summary>
|
|
/// 状态
|
|
/// 状态
|
|
/// </summary>
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "状态", ColumnName = "status")]
|
|
[SugarColumn(ColumnDescription = "状态", ColumnName = "status")]
|
|
- public int Status { get; set; }
|
|
|
|
|
|
+ public int status { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// <summary>
|
|
/// 排序
|
|
/// 排序
|
|
/// </summary>
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "排序", ColumnName = "sort")]
|
|
[SugarColumn(ColumnDescription = "排序", ColumnName = "sort")]
|
|
- public int Sort { get; set; }
|
|
|
|
|
|
+ public int sort { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// <summary>
|
|
/// 版本号
|
|
/// 版本号
|
|
/// </summary>
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "版本号", ColumnName = "version")]
|
|
[SugarColumn(ColumnDescription = "版本号", ColumnName = "version")]
|
|
- public int Version { get; set; }
|
|
|
|
|
|
+ public int version { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// 创建时间
|
|
/// </summary>
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "创建时间", ColumnName = "create_date")]
|
|
[SugarColumn(ColumnDescription = "创建时间", ColumnName = "create_date")]
|
|
- public DateTime? CreateDate { get; set; }
|
|
|
|
|
|
+ public DateTime? createDate { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// 更新时间
|
|
/// </summary>
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "更新时间", ColumnName = "update_date")]
|
|
[SugarColumn(ColumnDescription = "更新时间", ColumnName = "update_date")]
|
|
- public DateTime? UpdateDate { get; set; }
|
|
|
|
|
|
+ public DateTime? updateDate { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// <summary>
|
|
/// 类型
|
|
/// 类型
|
|
/// </summary>
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "类型", ColumnName = "group_kind")]
|
|
[SugarColumn(ColumnDescription = "类型", ColumnName = "group_kind")]
|
|
- public int GroupKind { get; set; }
|
|
|
|
|
|
+ public int groupKind { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|