using System; namespace MySystem { public class OpAmountItem { //创客Id public int UserId { get; set; } //操作类型(1增加,2减少) public int OperateType { get; set; } //类别 public int ChangeType { get; set; } //备注 public string Remark { get; set; } //变更总额度 public decimal UseAmount { get; set; } //变更可提现额度 public decimal UseValidForGetAmount { get; set; } //变更未使用额度 public decimal UseTotalAmt { get; set; } //变更关联分仓额度 public decimal UseValidAmount { get; set; } //来源类型,区分表(1订单,2机具,3申请记录,4购买运营中心,5预扣款,6机具券,7兑换大盟主,8仓库) public int DataType { get; set; } //来源Id,表的主键Id public int DataId { get; set; } //是否入账 public int NoAccount { get; set; } } }