| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- using Business.Core.Attributes;
- using Microsoft.EntityFrameworkCore;
- using System.ComponentModel.DataAnnotations;
- namespace Business.Domain
- {
- /// <summary>
- /// 资源检查物料占用明细表
- /// </summary>
- [CollectionName("dopbase", "mo_ic_item_stockoccupy")]
- [Comment("资源检查物料占用明细表")]
- public class mo_ic_item_stockoccupy:MoBaseEntity
- {
- /// <summary>
- /// bangid
- /// </summary>
- [Comment("bangid")]
- public long bang_id { get; set; }
- /// <summary>
- /// 订单id
- /// </summary>
- [Comment("订单id")]
- public long? order_id { get; set; }
- /// <summary>
- /// 订单行id
- /// </summary>
- [Comment("订单行id")]
- public long? orderentry_id { get; set; }
- /// <summary>
- /// 工单ID
- /// </summary>
- [Comment("工单ID")]
- public long? morder_id { get; set; }
- /// <summary>
- /// 工单编号
- /// </summary>
- [Comment("工单编号")]
- public string morder_mo { get; set; }
- /// <summary>
- /// 物料id
- /// </summary>
- [Comment("物料id")]
- public long icitem_id { get; set; }
- /// <summary>
- /// 物料编码
- /// </summary>
- [StringLength(80)]
- [Comment("物料编码")]
- public string? icitem_number { get; set; }
- /// <summary>
- /// 版本号
- /// </summary>
- [StringLength(80)]
- [Comment("版本号")]
- public string? fversion { get; set; }
- /// <summary>
- /// 占用数量
- /// </summary>
- [Comment("占用数量")]
- public decimal quantity { get; set; }
- /// <summary>
- /// 项次号
- /// </summary>
- [Comment("项次号")]
- public string item_no { get; set; }
- }
- }
|