using Business.Core.Attributes;
using Business.Model;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace Bussiness.Model.ProductionProcess
{
///
/// 入库单
///
[CollectionName("dopbase", "mes_stock_enter")]
public class mes_stock_enter : BaseEntity
{
/////
///// 主键id
/////
//[Key]
//[Description("入库单id")]
//public long id { get; set; }
///
/// 物料编码
///
[StringLength(255)]
[Description("物料编码")]
public string? fitem_number { get; set; }
///
/// 物料名称
///
[StringLength(255)]
[Description("物料名称")]
public string? fitem_name { get; set; }
///
/// 全名
///
[StringLength(255)]
[Description("全名")]
public string? ffull_name { get; set; }
///
/// 规格型号
///
[StringLength(255)]
[Description("规格型号")]
public string? fmodel { get; set; }
///
/// 工单号
///
[StringLength(80)]
[Description("工单号")]
public string? order_no { get; set; }
///
/// 入库日期
///
[Description("入库日期")]
public DateTime edate { get; set; }
///
/// 入库数量
///
[Description("入库数量")]
public int eqty { get; set; }
///
/// 入库人id
///
[Description("入库人id")]
public long eby { get; set; }
///
/// 入库人姓名
///
[StringLength(80)]
[Description("入库人姓名")]
public string? ebyname { get; set; }
}
}