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