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.
19 lines
497 B
C#
19 lines
497 B
C#
6 months ago
|
using DS.Module.Core.Data;
|
||
|
using SqlSugar;
|
||
|
using System.ComponentModel;
|
||
|
|
||
|
namespace DS.WMS.Core.Op.Entity;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 海运出口舱单信息
|
||
|
/// </summary>
|
||
|
[SqlSugar.SugarTable("op_sea_export_shippingbill", "海运出口舱单信息")]
|
||
|
public class SeaExportShippingBill : BaseModel<long>
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 业务Id
|
||
|
/// </summary>
|
||
|
[SqlSugar.SugarColumn(ColumnDescription = "业务Id", IsNullable = false, Length = 100)]
|
||
|
public long BusinessId { get; set; }
|
||
|
|
||
|
}
|