You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
952 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Check.Entity
{
/// <summary>
/// 对账单业务关联表
/// </summary>
[SqlSugar.SugarTable("check_bill_business")]
public class CheckBillBusiness
{
/// <summary>
/// Id
/// </summary>
[SugarColumn(ColumnDescription = "Id", IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
/// <summary>
/// 对账Id
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "对账Id", IsNullable = false, DefaultValue = "0")]
public long CheckId { get; set; }
/// <summary>
/// 业务Id
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "业务Id", IsNullable = false, DefaultValue = "0")]
public long BusinessId { get; set; }
}
}