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.
43 lines
1.0 KiB
C#
43 lines
1.0 KiB
C#
using System;
|
|
using System.Data;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.MvcShipping.Models.WMSDeliver
|
|
{
|
|
[JsonObject]
|
|
public class EIP_Deliver : ModelObjectBillHead
|
|
{
|
|
public string BSNO { get; set; }
|
|
public string BSSTATUS { get; set; }
|
|
public string DELIVERNO { get; set; }
|
|
|
|
public string CUSTOMERNAME { get; set; }
|
|
|
|
public string FACTORY { get; set; }
|
|
public string GOODSNAMETT { get; set; }
|
|
public string DRIVER { get; set; }
|
|
public string TRUCKNO { get; set; }
|
|
|
|
public string DELIVERDATE { get; set; }
|
|
public string ENTERDATE { get; set; }
|
|
|
|
public string ENTEROPERATER { get; set; }
|
|
public string BUYCONTRACT { get; set; }
|
|
|
|
public string CORPID { get; set; }
|
|
public string REMARK { get; set; }
|
|
|
|
}
|
|
|
|
public class SortObjectDeliver
|
|
{
|
|
public string property { get; set; }
|
|
public string direction { get; set; }
|
|
}
|
|
|
|
}
|
|
|