WinFormTools/WinformGeneralDeveloperFrame/Entity/productMaterialOutWarehouse...

34 lines
924 B
C#
Raw Normal View History

2021-07-03 17:28:43 +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("productMaterialOutWarehouse")]
public partial class productMaterialOutWarehouseInfo
{
///id
[ModelBindControl("txtid")]
public int id{set;get;}
///生产领料出库单号
[ModelBindControl("txtcode")]
public string code{set;get;}
///领料单位
[ModelBindControl("txtdept")]
public int dept{set;get;}
///出库日期
[ModelBindControl("txtouttime")]
public DateTime outtime{set;get;}=DateTime.Now;
///制单人
[ModelBindControl("txtcreatorId")]
public int creatorId{set;get;}
///备注
[ModelBindControl("txtremark")]
public string remark{set;get;}
}
}