| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using Business.Core.Attributes;
- using Microsoft.EntityFrameworkCore;
- namespace Business.Domain
- {
- /// <summary>
- /// 每天消耗物料明细
- /// </summary>
- [CollectionName("dopbase", "b_day_bulletin_board")]
- [Comment("物料齐套明细")]
- public class b_day_bulletin_board : BaseEntity
- {
- /// <summary>
- /// 日期
- /// </summary>
- [Comment("日期")]
- public string day { get; set; }
- /// <summary>
- /// 类别:1-工单齐套检查;2-替代料齐套检查
- /// </summary>
- [Comment("类别")]
- public int? type { get; set; }
- /// <summary>
- /// 物料名称
- /// </summary>
- [Comment("物料名称")]
- public string item_name { get; set; }
- /// <summary>
- /// 物料编码
- /// </summary>
- [Comment("物料编码")]
- public string item_number { get; set; }
- /// <summary>
- /// 库存占用数量
- /// </summary>
- [Comment("库存占用数量")]
- [Precision(23, 10)]
- public decimal? use_qty { get; set; }
- /// <summary>
- /// 自制数量
- /// </summary>
- [Comment("自制数量")]
- [Precision(23, 10)]
- public decimal? make_qty { get; set; }
- /// <summary>
- /// 在制占用数量
- /// </summary>
- [Comment("在制占用数量")]
- [Precision(23, 10)]
- public decimal? mo_qty { get; set; }
- /// <summary>
- /// 采购占用数量
- /// </summary>
- [Comment("采购占用数量")]
- [Precision(23, 10)]
- public decimal? purchase_occupy_qty { get; set; }
- /// <summary>
- /// 缺料数量
- /// </summary>
- [Comment("缺料数量")]
- [Precision(23, 10)]
- public decimal? self_lack_qty { get; set; }
- }
- }
|