| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- 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.Production
- {
- /// <summary>
- /// 工单物料明细表
- /// </summary>
- [Comment("工单物料明细表")]
- public class WorkOrdDetail
- {
- /// <summary>
- /// 主键
- /// </summary>
- [Comment("主键")]
- [Key]
- public int RecID { get; set; }
- /// <summary>
- /// 域名
- /// </summary>
- [Comment("域名")]
- public string? Domain { get; set; }
- /// <summary>
- /// 工单
- /// </summary>
- [Comment("工单")]
- public string? WorkOrd { get; set; }
- /// <summary>
- /// 工序
- /// </summary>
- [Comment("工序")]
- public int? Op { get; set; }
- /// <summary>
- /// 物料编号
- /// </summary>
- [Comment("物料编号")]
- public string? ItemNum { get; set; }
- /// <summary>
- /// 需求数量
- /// </summary>
- [Comment("需求数量")]
- public decimal? QtyRequired { get; set; }
- /// <summary>
- /// 发布数量
- /// </summary>
- [Comment("发布数量")]
- public decimal? QtyPosted { get; set; }
- /// <summary>
- /// 退回数量
- /// </summary>
- [Comment("退回数量")]
- public decimal? QtyReturned { get; set; }
- /// <summary>
- /// 状态:C为不可用状态
- /// </summary>
- [Comment("状态")]
- public string? Status { get; set; }
- /// <summary>
- /// 是否有效:1-有效;0-无效
- /// </summary>
- [Comment("是否有效")]
- public int? IsActive { get; set; }
- }
- }
|