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