using Business.Core.Attributes; using Microsoft.EntityFrameworkCore; using System; using System.ComponentModel.DataAnnotations; namespace Business.Domain { /// /// 工单齐套检查 /// [CollectionName("dopbase", "b_order_examine_result")] [Comment("工单齐套检查")] public class b_order_examine_result : BaseEntity { /// /// 工单id /// [Comment("工单id")] public long? orderid { get; set; } /// /// 生产工单编号 /// [StringLength(50)] [Comment("生产工单编号")] public string order_no { get; set; } /// /// 类别:1-工单齐套检查;2-替代料齐套检查 /// [Comment("类别")] public int? type { get; set; } /// /// 开工日期 /// [Comment("开工日期")] public DateTime? time { get; set; } /// /// 齐套日期 /// [Comment("齐套日期")] public DateTime? ketting_time { get; set; } /// /// BOM编码 /// [Comment("BOM编码")] public string bom_number { get; set; } /// /// 需要数量 /// [Comment("需要数量")] [Precision(23, 10)] public decimal? need_qty { get; set; } } }