| | |
| | | /// 系统单位语言 |
| | | /// </summary> |
| | | [SugarTable("sys_unit_lang")] |
| | | public class SysUnitLang : BaseEntity, ISorter, System.ICloneable |
| | | public class SysUnitLang : BaseEntity, ICode, ISorter, System.ICloneable |
| | | { |
| | | /// <summary> |
| | | /// |
| | |
| | | /// <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> |
| | |
| | | /// <summary> |
| | | /// 说明 |
| | | /// </summary> |
| | | [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] |
| | | public string Description { get; set; } |
| | | |
| | | /// <summary> |