using Business.Core.Attributes; using Microsoft.EntityFrameworkCore; using System; using System.ComponentModel.DataAnnotations; namespace Business.Domain { /// /// 采购占用明细 /// [CollectionName("dopbase", "b_purchase_occupy")] [Comment("采购占用明细")] public class b_purchase_occupy : BaseEntity { /// /// 物料检查明细ID /// [Comment("物料检查明细ID")] public long? bom_child_examine_id { get; set; } /// /// 采购订单单号 /// [Comment("采购订单单号")] [StringLength(80)] public string po_billno { get; set; } /// /// 类型 /// [Comment("类型")] [StringLength(80)] public string type { get; set; } /// /// 占用量 /// [Comment("占用量")] [Precision(23, 10)] public decimal? qty { get; set; } /// /// 开始时间 /// [Comment("开始时间")] public DateTime? stime { get; set; } /// /// 结束时间 /// [Comment("结束时间")] public DateTime? etime { get; set; } } }