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
{
///
/// 海运出口多品名明细
///
[SqlSugar.SugarTable("op_ctn_goods", "多品名明细")]
public class OpCtnGoods : BaseModel
{
///
/// 业务Id
///
[SqlSugar.SugarColumn(ColumnDescription = "业务Id", IsNullable = false, DefaultValue = "0")]
public long BusinessId { get; set; }
///
/// 品名Id
///
[Description("品名Id")]
[SugarColumn(ColumnDescription = "品名Id", IsNullable = true, DefaultValue = "")]
public long? GoodsId { get; set; }
///
/// 品名 t_code_goods
///
[Description("品名")]
[SugarColumn(ColumnDescription = "品名", IsNullable = true, Length = 30)]
public string GoodsName { get; set; }
///
/// Desc:海关代码
///
[Description("海关代码")]
[SugarColumn(ColumnDescription = "海关代码", IsNullable = true, Length = 20)]
public string HSCode { get; set; }
}
}