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.
65 lines
1.8 KiB
C#
65 lines
1.8 KiB
C#
using System;
|
|
using System.Data;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.Areas.MvcShipping.Models.MsOpCtnFeeSearch
|
|
{
|
|
[JsonObject]
|
|
public class MsOpCtnFeeSearch : ModelObjectBase
|
|
{
|
|
public string MBLNO { get; set; }
|
|
public string XiangHao { get; set; }
|
|
public string XiangXing { get; set; }
|
|
public string DuiChangMaTou { get; set; }
|
|
public string ZhuangTai { get; set; }
|
|
public string ChuanMing { get; set; }
|
|
public string HangCi { get; set; }
|
|
public string Time { get; set; }
|
|
public string JcTime { get; set; }
|
|
public string CcTime { get; set; }
|
|
public string Amount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开航日
|
|
/// </summary>
|
|
public string KaiHangRi { get; set; }
|
|
|
|
/// <summary>
|
|
/// 到港日
|
|
/// </summary>
|
|
public string DaoGangRi { get; set; }
|
|
|
|
public string DuiZhangRiQi { get; set; }
|
|
public string DuiZhangRiQiFrom { get; set; }
|
|
}
|
|
|
|
[JsonObject]
|
|
public class MsOpCtnFeeSearchDetails : ModelObjectBase
|
|
{
|
|
public string MBLNO { get; set; }
|
|
public string XiangHao { get; set; }
|
|
public string XiangXing { get; set; }
|
|
public string ZhuangTai { get; set; }
|
|
public string DiDian { get; set; }
|
|
public string Time { get; set; }
|
|
public string FeiYong { get; set; }
|
|
public string YongXiangTianShu { get; set; }
|
|
public string DuiZhangRiQi { get; set; }
|
|
}
|
|
|
|
[JsonObject]
|
|
public class MsOpCtnFee
|
|
{
|
|
public string GID { get; set; }
|
|
public string FeeNo { get; set; }
|
|
public string Amount { get; set; }
|
|
public string MBLNO { get; set; }
|
|
public string PayCust { get; set; }
|
|
}
|
|
|
|
|
|
|
|
} |