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/Storage/DB/OutdoInfo.cs

37 lines
1.1 KiB
C#

2 years ago
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_REP_WMSOUTDO")]
public class OutdoInfo
{
[Key]
public string WMSID { get; set; }
public string CUSTOMERNAME { get; set; }
public string GOODSNAME { get; set; }
public string PKGS { get; set; }
public string KGS { get; set; }
public string MBLNO { get; set; }
public string WMSNO { get; set; }//出库单号
public string DODATE { get; set; }
public string CNTRNO { get; set; }
public OutdoInfo()
{
this.WMSID = Guid.NewGuid().ToString();
this.CUSTOMERNAME = string.Empty;
this.GOODSNAME = string.Empty;
this.PKGS = "0";
this.KGS = "0";
this.MBLNO = string.Empty;
this.WMSNO = string.Empty;
this.DODATE = DateTime.Now.ToString("yyyy-MMMM-dd");
this.CNTRNO = string.Empty;
}
}
}