61 lines
1.9 KiB
C#
61 lines
1.9 KiB
C#
|
|
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("productMaterialInWarehouseDetail")]
|
||
|
|
public partial class productMaterialInWarehouseDetailInfo
|
||
|
|
{
|
||
|
|
///id
|
||
|
|
[ModelBindControl("txtid")]
|
||
|
|
public int id{set;get;}
|
||
|
|
///主表id
|
||
|
|
[ModelBindControl("txtmasterid")]
|
||
|
|
public int masterid{set;get;}
|
||
|
|
///生产退料入库单号
|
||
|
|
[ModelBindControl("txtmasercode")]
|
||
|
|
public string masercode{set;get;}
|
||
|
|
///生产退料入库明细单号
|
||
|
|
[ModelBindControl("txtdetailcode")]
|
||
|
|
public string detailcode{set;get;}
|
||
|
|
///生产退料单号
|
||
|
|
[ModelBindControl("txtproductionMaterialReturnCode")]
|
||
|
|
public string productionMaterialReturnCode{set;get;}
|
||
|
|
///生产退料明细单号
|
||
|
|
[ModelBindControl("txtproductionMaterialReturnDetailCode")]
|
||
|
|
public string productionMaterialReturnDetailCode{set;get;}
|
||
|
|
///物料
|
||
|
|
[ModelBindControl("txtmaterialid")]
|
||
|
|
public int materialid{set;get;}
|
||
|
|
///物料编码
|
||
|
|
[ModelBindControl("txtmaterialcode")]
|
||
|
|
public string materialcode{set;get;}
|
||
|
|
///规格型号
|
||
|
|
[ModelBindControl("txtmaterialspec")]
|
||
|
|
public string materialspec{set;get;}
|
||
|
|
///退料原因
|
||
|
|
[ModelBindControl("txtreason")]
|
||
|
|
public string reason{set;get;}
|
||
|
|
///入库数量
|
||
|
|
[ModelBindControl("txtnumber")]
|
||
|
|
public decimal number{set;get;}
|
||
|
|
///计量单位
|
||
|
|
[ModelBindControl("txtunit")]
|
||
|
|
public int unit{set;get;}
|
||
|
|
///仓库
|
||
|
|
[ModelBindControl("txtwarehouse")]
|
||
|
|
public int warehouse{set;get;}
|
||
|
|
///工单号
|
||
|
|
[ModelBindControl("txtwocode")]
|
||
|
|
public string wocode{set;get;}
|
||
|
|
///备注
|
||
|
|
[ModelBindControl("txtremark")]
|
||
|
|
public string remark{set;get;}
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|