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.

178 lines
4.7 KiB
C#

using System;
using System.Data;
using System.Collections;
using System.Collections.Generic;
using HcUtility.Core;
using Newtonsoft.Json;
namespace DSWeb.MvcShipping.Models.WMSNew
{
[JsonObject]
public class WMSNewList : ModelObjectBillHead
{
public string GID { get; set; }
//EIP
public bool EIP { get; set; }
//是否入账
public string ISLOCK { get; set; }
//货权转移
public string ISCHANGE { get; set; }
//提单号
public string BLNO { get; set; }
//备案清单号
public string CUSTOMNO { get; set; }
//入库单号
public string WMSNO { get; set; }
//客户名称
public string CUSTOMERNAME { get; set; }
//仓库名称
public string STORAGENAME { get; set; }
//应收客户
public string ARCLIENT { get; set; }
//应付客户
public string TRUCKNAME { get; set; }
//品名
public string GOODSNAME { get; set; }
//牌号
public string GOODSMODEL { get; set; }
//入库件数
public string GOODSPACK { get; set; }
//剩余件数
public string GOODSPACKSTOCK { get; set; }
//入库量
public string GOODSRKSL { get; set; }
//库存量
public string GOODSKGS { get; set; }
//重量
public string GOODSSTOCK { get; set; }
//计费单位
public string CHARGEUNIT { get; set; }
//应收账款
public string ARFEE { get; set; }
//应付账款
public string APFEE { get; set; }
//操作人
public string WMSOP { get; set; }
//入库时间
public string WMSDATE { get; set; }
//开始计费日期
public string STARTBILLINGDATE { get; set; }
//市场货值
public string MARKETVALUE { get; set; }
//银行货值
public string BANKVALUE { get; set; }
//批次号
public string BZTCHNO { get; set; }
//
public string FREESTORAGEPERIOD { get; set; }
//
public string FREESTORAGEPERIODAP { get; set; }
public string CONTRACTNO { get; set; }
public string STARTBILLINGDATEAP { get; set; }
public string GOODSSTANDARD { get; set; }
public string AREANAME { get; set; }
public string CUSTNO { get; set; }
public string ASSOCIATEDNO { get; set; }
//库别
public string WHS_CODE { get; set; }
//锁定状态
public string FEESTATUSDISC { get; set; }
public string CTNALL { get; set; }
public string CNTRNO { get; set; }
public int BAOGUANJIANSHU { get; set; }
public string ISLOCK2 { get; set; }
public string PKGS { get; set; }
/// <summary>
/// 封号
/// </summary>
public string SEALNO { get; set; }
public string ISBONDED { get; set; }
/// <summary>
/// 应收费用状态
/// </summary>
public string DRFEESTATUS { get; set; }
/// <summary>
/// 应付费用状态
/// </summary>
public string CRFEESTATUS { get; set; }
public string GOODSNAMEID { get; set; }
public string PICIHAO { get; set; }
public string TiDanJianShu { get; set; }
public string TiDanZhongLiang { get; set; }
public string AREACODE { get; set; }
public string REMARKS { get; set; }
public string FilePath { get; set; }
public string COMPANY { get; set; }
public string WET { get; set; }
public string RENTAREA { get; set; }
public string ACCDATE { get; set; }
private bool _feestatus = false;
/// <summary>
/// 费用状态
/// </summary>
[ModelDB(MDBType = ModelDBOprationType.Insert)]
public bool FEESTATUS
{
get { return _feestatus; }
set { _feestatus = value; }
}
private string _FEESTATUSREF = "未锁定";
/// <summary>
/// 费用状态_中文
/// </summary>
public string FEESTATUSREF
{
get { return _FEESTATUSREF; }
set { _FEESTATUSREF = value; }
}
// public string GOODSKGS { get; set; }
public string COUNTRYOFORIGIN { get; set; }
public string SALE { get; set; }
}
public class SortObject
{
public string property { get; set; }
public string direction { get; set; }
}
[JsonObject]
public class CustomNo
{
public string CUSTOMNO { get; set; }
}
[JsonObject]
public class CNTRNO
{
public string DATA { get; set; }
}
}