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 NbrMaster
{
///
/// 主键
///
[Comment("主键")]
[Key]
public int RecID { get; set; }
///
/// 域名
///
[Comment("域名")]
public string Domain { get; set; }
///
/// 类型
///
[Comment("类型")]
public string Type { get; set; }
///
/// 单据编号
///
[Comment("单据编号")]
public string Nbr { get; set; }
///
/// 备注
///
[Comment("备注")]
public string Remark { get; set; }
///
/// 日期
///
[Comment("日期")]
public DateTime? Date { get; set; }
///
/// 状态:C为不可用状态
///
[Comment("状态")]
public string Status { get; set; }
///
/// 工单
///
[Comment("工单")]
public string WorkOrd { get; set; }
///
/// 订单数量
///
[Comment("订单数量")]
public decimal QtyOrd { get; set; }
///
/// 是否有效:1-有效;0-无效
///
[Comment("是否有效")]
public bool IsActive { get; set; }
///
/// 产线
///
[Comment("产线")]
public string ProdLine { get; set; }
///
/// 是否编辑
///
[Comment("是否编辑")]
public bool IsChanged { get; set; }
///
/// 部门
///
[Comment("部门")]
public string Department { get; set; }
///
/// 领料人姓名
///
[Comment("领料人姓名")]
public string Name { get; set; }
///
/// 备料人
///
[Comment("备料人")]
public string User1 { get; set; }
///
/// 创建时间
///
[Comment("创建时间")]
public DateTime? CreateTime { get; set; }
///
/// 创建人
///
[Comment("创建人")]
public string CreateUser { get; set; }
///
/// 创建时间
///
[Comment("修改时间")]
public DateTime? UpdateTime { get; set; }
///
/// 修改人
///
[Comment("修改人")]
public string UpdateUser { get; set; }
}
}