using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Check.Entity
{
///
/// 对账单费用关联表
///
[SqlSugar.SugarTable("check_bill_fee_records")]
public class CheckBillFeeRecords
{
///
/// Id
///
[SugarColumn(ColumnDescription = "Id", IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 对账Id
///
[SqlSugar.SugarColumn(ColumnDescription = "对账Id", IsNullable = false, DefaultValue = "0")]
public long CheckId { get; set; }
///
/// 业务Id
///
[SqlSugar.SugarColumn(ColumnDescription = "业务Id", IsNullable = false, DefaultValue = "0")]
public long BusinessId { get; set; }
///
/// 费用记录Id
///
[SqlSugar.SugarColumn(ColumnDescription = "费用记录Id", IsNullable = false, DefaultValue = "0")]
public long FeeRecordId { get; set; }
///
/// 对账金额
///
[SugarColumn(ColumnDescription = "对账金额", IsNullable = true, Length = 18, DecimalDigits = 2, DefaultValue = "0")]
public decimal? CheckBillAmount { get; set; } = 0;
}
}