using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; using YieldChain.Security; using YLErp.DBModels.Base; namespace YLErp.DBModels { [Table("swap_rate_log")] public class SwapRateLog : DBModelBaseV3 { /// /// 费率id /// [DisplayName("费率id")] [Column("rate_id")] public int RateId { get; set; } /// /// 费率类型 0-固定,1-浮动 /// [DisplayName("费率类型")] [Column("rate_type")] public int RateType { get; set; } /// /// 操作类型 /// [DisplayName("操作类型")] [Column("opt_type")] public string OptType { get; set; } /// /// 变更信息 /// [DisplayName("变更信息")] [Column("changes")] public string Changes { get; set; } /// /// 备注 /// [DisplayName("备注")] [Column("remark")] public string Remark { get; set; } } }