using System;
namespace JiaZhiQuan.Common.Models.PO
{
///
/// n_balance_cashout_disabled
///
public class BalanceCashoutDisabledPO
{
///
///
///
public int id { get; set; }
///
/// 禁用提现开始时间(包含)
///
public DateTime startAt { get; set; }
///
/// 禁用提现结束时间(不包含)
///
public DateTime endAt { get; set; }
///
/// 提示标题
///
public string noticeTitle { get; set; }
///
/// 提示内容
///
public string noticeCont { get; set; }
///
/// 操作人员编号
///
public int sysUserId { get; set; }
///
/// 创建时间
///
public DateTime createAt { get; set; }
}
}