| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using Business.Core.Attributes;
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.ComponentModel.DataAnnotations;
- namespace Business.Domain
- {
- /// <summary>
- /// 在制占用明细
- /// </summary>
- [CollectionName("dopbase", "b_mo_occupy")]
- [Comment("在制占用明细")]
- public class b_mo_occupy : BaseEntity
- {
- /// <summary>
- /// 物料检查明细ID
- /// </summary>
- [Comment("物料检查明细ID")]
- public long? bom_child_examine_id { get; set; }
- /// <summary>
- /// 工单号
- /// </summary>
- [StringLength(50)]
- [Comment("工单号")]
- public string moo_mo { get; set; }
- /// <summary>
- /// 占用量
- /// </summary>
- [Comment("占用量")]
- [Precision(23, 10)]
- public decimal? moo_qty { get; set; }
- /// <summary>
- /// 开始时间
- /// </summary>
- [Comment("开始时间")]
- public DateTime? moo_stime { get; set; }
- /// <summary>
- /// 结束时间
- /// </summary>
- [Comment("结束时间")]
- public DateTime? moo_etime { get; set; }
- }
- }
|