using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pcb.Domain.PageObject { /// /// 超船船舶船期信息对象 /// public class CCShippingInfo { /// /// 船期ID /// public int id { get; set; } /// /// 船舶id /// public int cid { get; set; } /// /// 船舶中文名称 /// public string cnShipName { get; set; } /// /// 船舶英文名称 /// public string enShipName { get; set; } /// /// 船舶等级/星际 /// public int levelInfo { get; set; } /// /// 船舶(吨位/载重吨) /// public string loadTon { get; set; } /// /// 船舶船期受载日期 /// public DateTime loadDate { get; set; } /// /// 船型id /// public int shipTypeId { get; set; } /// /// 船舶船期是否推荐 /// public int Recommend { get; set; } /// /// 港口名称 /// public string portName { get; set; } /// /// 物种名称 /// public string goodsName { get; set; } /// /// 船期是否已经固定航线(0否,1是) /// public int fixedRoute { get; set; } /// /// 船舶船期计划状态(0, 无运载计划, 1 已有运载计划) /// public int planState { get; set; } /// /// 船期更新时间(格式:4天 以前, 4分以前 等等) /// public string editDate { get; set; } /// /// 船舶是否已经验证(0不通过,1通过) /// public int theTrue { get; set; } /// /// 船长 /// public string shipLong { get; set; } /// /// 船宽 /// public string shipWidth { get; set; } /// /// 型深 /// public string typeDeep { get; set; } /// /// 船型名称 /// public string TypeName { get; set; } /// /// 船舶建造年代 /// public string Makedate { get; set; } /// /// 船舶船期更新时间 /// public DateTime addTime { get; set; } } }