| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- using Business.Core.Attributes;
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.ComponentModel.DataAnnotations;
- namespace Business.Domain
- {
- /// <summary>
- /// 委外工单明细
- /// </summary>
- [CollectionName("dopbase", "b_ooder")]
- [Comment("采购占用明细")]
- public class b_ooder : BaseEntity
- {
- /// <summary>
- /// 物料检查明细ID
- /// </summary>
- [Comment("物料检查明细ID")]
- public long? bom_child_examine_id { get; set; }
- /// <summary>
- /// 工单编号
- /// </summary>
- [Comment("工单编号")]
- [StringLength(50)]
- public string oorder_no { get; set; }
- /// <summary>
- /// 委外订单日期
- /// </summary>
- [Comment("委外订单日期")]
- public DateTime? oorder_date { get; set; }
- /// <summary>
- /// 生产组织名称
- /// </summary>
- [Comment("生产组织名称")]
- [StringLength(50)]
- public string ooentry_prdname { get; set; }
- /// <summary>
- /// 计划开工日期
- /// </summary>
- [Comment("计划开工日期")]
- public DateTime? ooentry_stime { get; set; }
- /// <summary>
- /// 计划完工日期
- /// </summary>
- [Comment("计划完工日期")]
- public DateTime? ooentry_etime { get; set; }
- /// <summary>
- /// 工单生产数量(计划数量)
- /// </summary>
- [Comment("工单生产数量")]
- [Precision(23, 10)]
- public decimal? morder_production_number { get; set; }
- /// <summary>
- /// 加工单位
- /// </summary>
- [Comment("加工单位")]
- [StringLength(100)]
- public string production_unit { get; set; }
- /// <summary>
- /// 加工单位编码
- /// </summary>
- [Comment("加工单位编码")]
- [StringLength(20)]
- public string production_unit_code { get; set; }
- }
- }
|