using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace YLErp.DBModels { [Table("currency")] public class Currency { /// /// 货币英简 /// [Key] [DisplayName("货币英简")] public string CurrencyCode { get; set; } /// /// 货币名称 /// [DisplayName("货币名称")] public string CurrencyName { get; set; } /// /// 货币单位 /// [DisplayName("货币单位")] public string CurrencyUnit { get; set; } /// /// 货币符号 /// [DisplayName("货币符号")] public string CurrencySymbol { get; set; } /// /// 生效日期 /// public DateTime? StartDate { get; set; } } }