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.
49 lines
1.9 KiB
C#
49 lines
1.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace DSWeb.Areas.Dispatch.DB
|
|
{
|
|
[Table("vw_wms_stocktake")]
|
|
public class VStockTakeInfo
|
|
{
|
|
public string putintype { get; set; }
|
|
[Key]
|
|
public string NID { get; set; }
|
|
public string WMSDATE { get; set; }
|
|
public string CUSTOMERNAME { get; set; }
|
|
public string BLNO { get; set; }
|
|
public string STORAGENAME { get; set; }
|
|
public string GOODSNAME { get; set; }
|
|
public string GOODSMODEL { get; set; }
|
|
public decimal hj_GOODSRKSL { get; set; }
|
|
public decimal hj_GOODSPFSL_OUT { get; set; }
|
|
public decimal hj_GOODSSTOCK { get; set; }
|
|
public decimal hj_GOODSPACK { get; set; }
|
|
public decimal hj_GOODSPACKPFSL { get; set; }
|
|
public decimal hj_GOODSPACKSTOCK { get; set; }
|
|
public decimal? ClearStockGap { get; set; }
|
|
public string GID { get; set; }
|
|
public string ASSOCIATEDNO { get; set; }
|
|
public string CONTRACTNO { get; set; }
|
|
public string CHARGEUNIT { get; set; }
|
|
public string CUSTOMNO { get; set; }
|
|
public string GOODSGRADE { get; set; }
|
|
public decimal? GOODSSLICE { get; set; }
|
|
public string GOODSSTANDARD { get; set; }
|
|
public string REMARK { get; set; }
|
|
public decimal hj_GOODSPACKACTUAL { get; set; }
|
|
public decimal hj_GOODSRKSLACTUAL { get; set; }
|
|
public string CORPID { get; set; }
|
|
public decimal? GOODSNUM { get; set; }
|
|
public string wmsno { get; set; }
|
|
public bool? ISCHANGE { get; set; }
|
|
public bool ISLOCK2 { get; set; }
|
|
public string ISBONDED { get; set; }
|
|
public decimal? WeiWanShui { get; set; }
|
|
public decimal GOODSSLICE_OUT { get; set; }
|
|
}
|
|
} |