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.
DS7/DSWeb/Areas/MvcShipping/Models/WMSDeliver/EIP_Stock.cs

41 lines
883 B
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_Stock : ModelObjectBillHead
{
public string BSNO { get; set; }
public string BSSTATUS { get; set; }
public string STOCKUPNO { get; set; }
public string CUSTOMERNAME { get; set; }
public string SALECONTRACT { get; set; }
public string GOODSNAMETT { get; set; }
public string STOCKUPDATE { get; set; }
public string ENTERDATE { get; set; }
public string ENTEROPERATER { get; set; }
public string CORPID { get; set; }
public string ISRECVED { get; set; }
public string REMARK { get; set; }
public string EXPORTNO { get; set; }
}
}