using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using XF.Domain.Repository;
namespace Hotline.Snapshot;
///
/// 补充发放记录
///
[Description("补充发放记录")]
public class SupplementRecord : FullStateEntity
{
///
/// OrderId
///
[SugarColumn(ColumnDescription = "OrderId")]
public string OrderId { get; set; }
///
/// No
///
[SugarColumn(ColumnDescription ="No")]
public string No { get; set; }
///
/// RedPackAuditId
///
[SugarColumn(ColumnDescription = "RedPackAuditId")]
public string RedPackAuditId { get; set; }
///
/// RedPackRecordId
///
[SugarColumn(ColumnDescription = "RedPackRecordId")]
public string RedPackRecordId { get; set; }
///
/// 行业
///
[SugarColumn(ColumnDescription = "行业名称")]
public string IndustryName { get; set; }
///
/// 行业Id
///
[SugarColumn(ColumnDescription = "行业Id")]
public string? IndustryId { get; set; }
///
/// 补充发放金额
///
[SugarColumn(ColumnDescription = "补充发放金额")]
public double? ReplenishAmount { get; set; }
///
/// 补充发放时间
///
[SugarColumn(ColumnDescription = "补充发放时间")]
public DateTime? ReplenishTime { get; set; }
///
/// 补充发放备注
///
[SugarColumn(ColumnDescription = "补充发放备注")]
public string? ReplenishRemark { get; set; }
///
/// 补充发放类型
///
[SugarColumn(ColumnDescription = "补充发放类型")]
public string? ReplenishType { get; set; }
///
/// 补充发放类型Id
///
[SugarColumn(ColumnDescription = "补充发放类型Id")]
public string? ReplenishTypeId { get; set; }
///
/// 银行卡号
///
[SugarColumn(ColumnDescription = "银行卡号")]
public string? BankCardNo { get; set; }
///
/// 开户行
///
[SugarColumn(ColumnDescription = "开户行")]
public string? OpenBank { get; set; }
///
/// 是否发送短信
///
[SugarColumn(ColumnDescription = "是否发送短信")]
public bool IsSendSMS { get; set; }
}