| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using Business.Model;
- using Microsoft.EntityFrameworkCore;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- namespace Bussiness.Model.MES.IC
- {
- /// <summary>
- /// 物料库存表
- /// </summary>
- public class ic_item_stock : BaseEntity
- {
- /// <summary>
- /// 物料id
- /// </summary>
- [Required]
- [Description("物料id")]
- public long icitem_id { get; set; }
- /// <summary>
- /// 物料名称
- /// </summary>
- [StringLength(80)]
- [Description("物料名称")]
- public string? icitem_name { get; set; }
- /// <summary>
- /// 物料库存量
- /// </summary>
- [Precision(20, 8)]
- [Description("物料库存量")]
- public decimal? sqty { get; set; }
- /// <summary>
- /// 调拨在途数量
- /// </summary>
- [Precision(20, 8)]
- [Description("调拨在途数量")]
- public decimal? quantity_in_transit { get; set; }
- /// <summary>
- /// 工厂编码
- /// </summary>
- [StringLength(80)]
- [Description("工厂编码")]
- public string? factory_fode { get; set; }
- }
- }
|