| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using Business.Core.Attributes;
- using Business.Model;
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Business.Model.Bang
- {
- /// <summary>
- /// 委外工单明细
- /// </summary>
- [CollectionName("dopbang", "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; }
- }
- }
|