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.
42 lines
1.4 KiB
C#
42 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace DSWeb.Areas.Storage.DB
|
|
{
|
|
[Table("VW_OP_WMS_AREAGOODS")]
|
|
public class KuCunInfo
|
|
{
|
|
[Key] public string WMSID { get; set; }
|
|
public string CUSTOMERNAME { get; set; }
|
|
public string CUSTOMNO { get; set; }//报关单号
|
|
public string GOODSNAME { get; set; }//货物名称
|
|
public string PKGS_FIRST { get; set; }//入库件数
|
|
public string PKGS { get; set; }//库存件数
|
|
|
|
public string MBLNO { get; set; }//提单号
|
|
public string BSNO { get; set; } //入库单号
|
|
public string CNTRNO { get; set; }//箱号
|
|
public string STOREHOUSE { get; set; }//仓库
|
|
public string AREACODE { get; set; }//库位
|
|
|
|
public KuCunInfo()
|
|
{
|
|
this.WMSID = Guid.NewGuid().ToString();
|
|
this.CUSTOMERNAME = string.Empty;
|
|
this.CUSTOMNO = string.Empty;
|
|
this.GOODSNAME = string.Empty;
|
|
this.PKGS = "0";
|
|
this.PKGS_FIRST = "0";
|
|
this.MBLNO = string.Empty;
|
|
this.BSNO = string.Empty;
|
|
this.CNTRNO = string.Empty;
|
|
this.STOREHOUSE = string.Empty;
|
|
this.AREACODE = string.Empty;
|
|
}
|
|
|
|
}
|
|
} |