using APT.Infrastructure.Core; using System; using System.Collections.Generic; using System.ComponentModel; namespace APT.BaseData.Domain.Entities.FM { [Description("单位表")] /// /// 单位 /// [IgnoreT4]public class T_FM_UNIT : MesEntityBase { /// 编号 //[CUnique] [Description("编号")] public string CODE { get; set; } /// 名称 [Description("名称")] [AcronymField("NAME_ACRONYM")] public string NAME { get; set; } /// /// 名称首字母缩写 /// [Description("名称首字母缩写")] public string NAME_ACRONYM { get; set; } /// 精度:小数位数 [Description("精度:小数位数")] public int POINT_LEN { get; set; } [EnumName("FMRoundTypeEnum")] [Description("小数进位方式")] public int ROUND_TYPE { get; set; } /// 备注 [Description("备注")] public string REMARK { get; set; } } }