models/BaseModel.cs
@@ -4,12 +4,12 @@ namespace HH.WCS.Mobox3.DSZSH.models { /// <summary> /// 【框架】模板抽象类:基本表数据模型 /// 【框架】模板抽象类:基本表数据模型 /// </summary> public abstract class BaseModel { /// <summary> /// 唯一识别码(底层主键) /// 唯一识别码 (底层主键) /// </summary> [SugarColumn(IsPrimaryKey = true)] public string S_ID { get; set; } = Guid.NewGuid().ToString("D"); @@ -35,7 +35,7 @@ public DateTime T_MODIFY { get; set; } = DateTime.Now; /// <summary> /// 数据状态:编辑、定版 /// 数据状态:编辑,定版 /// </summary> public string S_STATE { get; set; } = "编辑"; }