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.
18 lines
567 B
C#
18 lines
567 B
C#
using System.ComponentModel.Design;
|
|
|
|
namespace Ds.Modules.DsEntity.OP
|
|
{
|
|
/// <summary>
|
|
/// 运输记录表
|
|
/// </summary>
|
|
public class Ds_Op_ShippingRecords : BaseEntityTenant
|
|
{
|
|
// 记录ID(RecordID, 主键)
|
|
//出口货物ID(ExportItemID, 外键关联到ExportItems表)
|
|
//公司ID(CompanyID, 外键关联到ShippingCompanies表)
|
|
//出发日期(DepartureDate)
|
|
//预计到达日期(EstimatedArrivalDate)
|
|
//实际到达日期(ActualArrivalDate)
|
|
//其他运输记录相关信息
|
|
}
|
|
} |