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
2.1 KiB
C#
65 lines
2.1 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.MsOpCtnFeeReport
|
|
{
|
|
[JsonObject]
|
|
public class MsOpCtnFeeReport : ModelObjectBase
|
|
{
|
|
public string MBLNO { get; set; }
|
|
public string XiangXing { get; set; }
|
|
public string TEU { get; set; }
|
|
public string XiangHao { get; set; }
|
|
public string MuDiGang { get; set; }
|
|
public string DaoGangRiQi { get; set; }
|
|
public string TiXiangRiQi { get; set; }
|
|
public string ChuZhaKouRiQi { get; set; }
|
|
public string HuanXiangRiQi { get; set; }
|
|
public int YongXiangShiJianGangNei { get; set; }
|
|
public int YongXiangShiJianGangWai { get; set; }
|
|
public int MianXiangShiGangNei { get; set; }
|
|
public int MianXiangShiGangWai { get; set; }
|
|
public int ChaoQiShiJianGangNei { get; set; }
|
|
public int ChaoQiShiJianGangWai { get; set; }
|
|
public float ChaoQiFeiYongGangNei { get; set; }
|
|
public float ChaoQiFeiYongGangWai { get; set; }
|
|
public float HeJi { get; set; }
|
|
|
|
public string KongXiangChuChangRiQi { get; set; }
|
|
public string ZhuangChuanRiQi { get; set; }
|
|
|
|
public string DuiZhangRiQi { 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; }
|
|
}
|
|
|
|
|
|
|
|
} |