| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- 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.Domain
- {
- /// <summary>
- /// 生产线维护表
- /// </summary>
- [Comment("生产线维护表")]
- public class LineMaster
- {
- /// <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 Describe { get; set; }
- /// <summary>
- /// 库位
- /// </summary>
- [Comment("库位")]
- public string Location { get; set; }
- /// <summary>
- /// 生产线类型:区分生产线和生产线组
- /// </summary>
- [Comment("生产线类型:区分生产线和生产线组")]
- public string LineType { get; set; }
- /// <summary>
- /// 线边库
- /// </summary>
- [Comment("线边库")]
- public string VLocation { get; set; }
- /// <summary>
- /// 是否有效:1-有效;0-无效
- /// </summary>
- [Comment("是否有效")]
- public bool IsActive { get; set; }
- /// <summary>
- /// 库位
- /// </summary>
- [Comment("库位")]
- public string location2 { get; set; }
- /// <summary>
- /// 不良库位
- /// </summary>
- [Comment("不良库位")]
- public string location3 { get; set; }
- /// <summary>
- /// 可领料库位
- /// </summary>
- [Comment("可领料库位")]
- public string PickingLocation { get; set; }
- /// <summary>
- /// 中间库位
- /// </summary>
- [Comment("中间库位")]
- public string MidLocation { get; set; }
- }
- }
|