| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- 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 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? 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 Boolean 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; }
- }
- }
|