using System.ComponentModel.DataAnnotations.Schema; namespace YLErp.DBModels { /// /// 出入金信息 /// [Table("clientcashincashout_update")] public class clientcashincashout_update : DBModelWithOperator { /// /// 关联clientcashincashout表Id /// public int ClientcashincashoutId { set; get; } /// /// 修改前金额 /// public double OldMoney { set; get; } /// /// 修改后金额 /// public double NewMoney { set; get; } /// /// 修改前出入金方向 /// public string OldDirection { set; get; } /// /// 修改后出入金方向 /// public string NewDirection { set; get; } /// /// 修改前出入金时间 /// public DateTime? OldHappenDate { set; get; } /// /// 修改后出入金时间 /// public DateTime? NewHappenDate { set; get; } /// /// 状态(修改待确认,拒绝,已确认) /// public string State { set; get; } /// /// 是否有效 /// public string ValidState { set; get; } } }