2021-05-27 18:08:25 +08:00
|
|
|
using WinformGeneralDeveloperFrame.Commons;
|
|
|
|
|
|
|
|
|
|
namespace MES.Entity
|
|
|
|
|
{
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using System.Data.Entity.Spatial;
|
|
|
|
|
|
|
|
|
|
[Table("material")]
|
|
|
|
|
public partial class materialInfo
|
|
|
|
|
{
|
2021-05-29 14:11:44 +08:00
|
|
|
///id
|
2021-05-27 18:08:25 +08:00
|
|
|
[ModelBindControl("txtid")]
|
|
|
|
|
public int id{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///物料名称
|
2021-05-27 18:08:25 +08:00
|
|
|
[ModelBindControl("txtname")]
|
|
|
|
|
public string name{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///物料编码
|
2021-05-27 18:08:25 +08:00
|
|
|
[ModelBindControl("txtcode")]
|
|
|
|
|
public string code{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///规格型号
|
2021-05-27 18:08:25 +08:00
|
|
|
[ModelBindControl("txtspec")]
|
|
|
|
|
public string spec{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///计量单位
|
2021-05-27 18:08:25 +08:00
|
|
|
[ModelBindControl("txtunit")]
|
|
|
|
|
public int unit{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///参考单价
|
2021-05-27 18:08:25 +08:00
|
|
|
[ModelBindControl("txtreferprice")]
|
|
|
|
|
public decimal referprice{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///物料类别
|
2021-05-27 18:08:25 +08:00
|
|
|
[ModelBindControl("txtmaterialtype")]
|
|
|
|
|
public int materialtype{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///仓库
|
2021-05-27 18:08:25 +08:00
|
|
|
[ModelBindControl("txtwarehouse")]
|
|
|
|
|
public int warehouse{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///采购入库总量
|
2021-05-27 18:08:25 +08:00
|
|
|
[ModelBindControl("txtPOinnumber")]
|
|
|
|
|
public decimal POinnumber{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///退货出库总量
|
2021-05-27 18:08:25 +08:00
|
|
|
[ModelBindControl("txtsalereturnnumber")]
|
|
|
|
|
public decimal salereturnnumber{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///生产领料总量
|
2021-05-27 18:08:25 +08:00
|
|
|
[ModelBindControl("txtYDProductConsume")]
|
|
|
|
|
public decimal YDProductConsume{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///生产退料总量
|
2021-05-27 18:08:25 +08:00
|
|
|
[ModelBindControl("txtproductmaterialreturn")]
|
|
|
|
|
public decimal productmaterialreturn{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///库存数量
|
2021-05-27 18:08:25 +08:00
|
|
|
[ModelBindControl("txtstocknumber")]
|
|
|
|
|
public decimal stocknumber{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///库存预警数量
|
2021-05-27 18:08:25 +08:00
|
|
|
[ModelBindControl("txtstockwarnnumber")]
|
|
|
|
|
public decimal stockwarnnumber{set;get;}
|
2021-05-29 14:11:44 +08:00
|
|
|
///备注
|
2021-05-27 18:08:25 +08:00
|
|
|
[ModelBindControl("txtremark")]
|
|
|
|
|
public string remark{set;get;}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|