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.

52 lines
1.8 KiB
C#

using AutoMapper;
using DSWeb.Common.DB;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace DSWeb.Areas.Mobile.Models.WechatApplet
{
public class CustFeeDto
{
public string GID { get; set; }
public string BSNO { get; set; }
public decimal? PRICE { get; set; }
public int? BSTYPE { get; set; }
public int? SENDTYPE { get; set; }
public string SENDTIME { get; set; }
public string MBLNO { get; set; }
public string HBLNO { get; set; }
public string VESSEL { get; set; }
public string VOYNO { get; set; }
public string ETD { get; set; }
public string CARRIER { get; set; }
public string FORWARDER { get; set; }
public string SENDUSERID { get; set; }
public string LURURENID { get; set; }
public string LURUREN { get; set; }
public string SENDUSER { get; set; }
public string SENDCOM { get; set; }
public string COMNAME { get; set; }
public string COMID { get; set; }
public string CANGKU { get; set; }
public string BSSTATUS { get; set; }
public string PORTDISCHARGE { get; set; }
public string DESTINATION { get; set; }
public string DESCRIPTION { get; set; }
public string MARKS { get; set; }
public decimal? PKGS { get; set; }
public string KINDPKGS { get; set; }
public decimal? KGS { get; set; }
public decimal? CBM { get; set; }
public string BEIZHU { get; set; }
public string BEIZHU2 { get; set; }
public string CREATETIME { get; set; }
public int? CtnrCount { get; set; }
public string CtnrInfo { get; set; }
public string WeiTuoFaSongFang { get; set; }
}
}