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.
54 lines
1.4 KiB
C#
54 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using FreeSql.DataAnnotations;
|
|
namespace djy.Paas.Model
|
|
{
|
|
/// <summary>
|
|
/// 船期航线主表
|
|
/// </summary>
|
|
public class tb_ShipRouteList:DataBase
|
|
{
|
|
/// <summary>
|
|
/// 工作任务Gid
|
|
/// </summary>
|
|
public Guid? WorkGId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 船公司代码
|
|
/// </summary>
|
|
public string CarrierCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 航线代码
|
|
/// </summary>
|
|
[Column(StringLength = 50)]
|
|
public string ShipRouteCode { get; set; }
|
|
/// <summary>
|
|
/// 航线名主航线
|
|
/// </summary>
|
|
[Column(StringLength = 100)]
|
|
public string ShipRouteName { get; set; }
|
|
/// <summary>
|
|
/// 船期时间编号 比如202107
|
|
/// </summary>
|
|
public int MonthCode { get; set; }
|
|
|
|
/// <summary>
|
|
///新解析出的船期数据列表
|
|
/// </summary>
|
|
[Column(IsIgnore =true)]
|
|
public List<tb_ShipSchedule> ScheduleListNew { get; set; } = new List<tb_ShipSchedule>();
|
|
|
|
|
|
/// <summary>
|
|
/// 已经保存的船期数据列表
|
|
/// </summary>
|
|
[Column(IsIgnore = true)]
|
|
public List<tb_ShipSchedule> ScheduleList { get; set; } = new List<tb_ShipSchedule>();
|
|
|
|
}
|
|
}
|