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.
43 lines
1.3 KiB
C#
43 lines
1.3 KiB
C#
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.Op.Entity
|
|
{
|
|
/// <summary>
|
|
/// 海运出口多品名明细
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("op_ctn_goods", "多品名明细")]
|
|
public class OpCtnGoods : BaseModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 业务Id
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "业务Id", IsNullable = false, DefaultValue = "0")]
|
|
public long BusinessId { get; set; }
|
|
/// <summary>
|
|
/// 品名Id
|
|
/// </summary>
|
|
[Description("品名Id")]
|
|
[SugarColumn(ColumnDescription = "品名Id", IsNullable = true, DefaultValue = "")]
|
|
public long? GoodsId { get; set; }
|
|
/// <summary>
|
|
/// 品名 t_code_goods
|
|
/// </summary>
|
|
[Description("品名")]
|
|
[SugarColumn(ColumnDescription = "品名", IsNullable = true, Length = 30)]
|
|
public string GoodsName { get; set; }
|
|
/// <summary>
|
|
/// Desc:海关代码
|
|
/// </summary>
|
|
[Description("海关代码")]
|
|
[SugarColumn(ColumnDescription = "海关代码", IsNullable = true, Length = 20)]
|
|
public string HSCode { get; set; }
|
|
}
|
|
}
|