using System; namespace JiaZhiQuan.Common.Models.PO { /// /// n_balance /// public class BalancePO { /// /// 用户编号 /// public long userId { get; set; } /// /// 可提现余额(分为单位) /// public int balance { get; set; } /// /// 冻结余额(分为单位) /// public int frozenBalance { get; set; } /// /// 是否禁用提现(默认为0,可以提现) /// public bool cashoutDisabled { get; set; } /// /// 最近一次修改提现状态的时间 /// public DateTime operationTime { get; set; } } }