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.

59 lines
1.9 KiB
C#

using System.ComponentModel;
using DS.Module.Core;
using DS.Module.Core.Data;
using DS.Module.Core.Enums;
using SqlSugar;
namespace DS.WMS.Core.Op.Entity
{
/// <summary>
/// 业务箱型报价表
/// </summary>
[SqlSugar.SugarTable("op_business_ctn_price", "业务箱型报价表")]
public class BusinessCtnPrice : BaseModel<long>
{
/// <summary>
/// 业务Id
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "业务Id", IsNullable = false, Length = 100)]
public long BusinessId { get; set; }
/// <summary>
/// 箱型
/// </summary>
[SugarColumn(ColumnDescription = "箱型", IsNullable = true, Length = 10)]
public string Ctn { get; set; }
/// <summary>
/// 箱型Id
/// </summary>
[SugarColumn(ColumnDescription = "箱型Id")]
public long CtnId { get; set; }
/// <summary>
/// 表现形式
/// </summary>
[SugarColumn(ColumnDescription = "表现形式", IsNullable = true, Length = 10)]
public string CtnAll { get; set; }
/// <summary>
/// 箱量
/// </summary>
[SugarColumn(ColumnDescription = "箱量", IsNullable = true, DefaultValue = "0")]
public int? CtnNum { get; set; }
/// <summary>
/// 报价
/// </summary>
[SugarColumn(ColumnDescription = "报价", IsNullable = true, DefaultValue = "0")]
public int QuotePrice { get; set; }
/// <summary>
/// 指导价
/// </summary>
[SugarColumn(ColumnDescription = "指导价", IsNullable = true, DefaultValue = "")]
public int? GuidePrice { get; set; }
/// <summary>
/// 底价
/// </summary>
[SugarColumn(ColumnDescription = "底价", IsNullable = true, DefaultValue = "")]
public int? FloorPrice { get; set; }
}
}