lixiaojun
2024-09-12 02f362e1db42f4315cf923f7643b09150585c52c
Yw.Service.Unit.Core/01-entity/01-lang/SysUnitLang.cs
@@ -4,7 +4,7 @@
    /// 系统单位语言
    /// </summary>
    [SugarTable("sys_unit_lang")]
    public class SysUnitLang : BaseEntity, ISorter, System.ICloneable
    public class SysUnitLang : BaseEntity, ICode, ISorter, System.ICloneable
    {
        /// <summary>
        /// 
@@ -25,11 +25,13 @@
        /// <summary>
        /// 名称
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string Name { get; set; }
        /// <summary>
        /// 编码
        /// </summary>
        [SugarColumn(Length = 100, IsNullable = true)]
        public string Code { get; set; }
        /// <summary>
@@ -40,6 +42,7 @@
        /// <summary>
        /// 说明
        /// </summary>
        [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
        public string Description { get; set; }
        /// <summary>