| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- 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 ProdLineDetail
- {
- /// <summary>
- /// 主键
- /// </summary>
- [Comment("主键")]
- [Key]
- public int RecID { get; set; }
- /// <summary>
- /// 域名
- /// </summary>
- [Comment("域名")]
- public string? Domain { get; set; }
- /// <summary>
- /// 生产线
- /// </summary>
- [Comment("生产线")]
- public string? Line { get; set; }
- /// <summary>
- /// 物料编号
- /// </summary>
- [Comment("物料编号")]
- public string? Part { get; set; }
- /// <summary>
- /// 单位标准产能=Uph
- /// </summary>
- [Comment("单位标准产能")]
- public decimal Rate { get; set; }
- /// <summary>
- /// 工序
- /// </summary>
- [Comment("工序")]
- public int? Op { get; set; }
- /// <summary>
- /// 是否有效:1-有效;0-无效
- /// </summary>
- [Comment("是否有效")]
- public int? IsActive { get; set; }
- /// <summary>
- /// 当前产线提前期(小时)
- /// </summary>
- [Comment("当前产线提前期")]
- public decimal SetupTime { get; set; }
- }
- }
|