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