95 lines
2.3 KiB
C#
95 lines
2.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
namespace DOAN.Model.MES.mm
|
|
{
|
|
/// <summary>
|
|
/// 物料需求计划
|
|
/// </summary>
|
|
[SugarTable("mm_require_plan_byline")]
|
|
public class MmRequirePlanByline
|
|
{
|
|
/// <summary>
|
|
/// id
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "material_code")]
|
|
public string MaterialCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "material_name")]
|
|
public string MaterialName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 需求数量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "require_num")]
|
|
public decimal RequireNum { get; set; }
|
|
|
|
/// <summary>
|
|
/// 需求日期
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "require_date" , IsPrimaryKey = true)]
|
|
public DateTime? RequireDate { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 线别
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "line_code", IsPrimaryKey = true)]
|
|
public string LineCode { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 颜色
|
|
/// </summary>
|
|
public string Color { get; set; }
|
|
|
|
/// <summary>
|
|
/// 规格型号
|
|
/// </summary>
|
|
public string Specification { get; set; }
|
|
|
|
/// <summary>
|
|
/// 计量单位
|
|
/// </summary>
|
|
public string Unit { get; set; }
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "cREATED_BY")]
|
|
public string CreatedBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "cREATED_TIME")]
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "uPDATED_BY")]
|
|
public string UpdatedBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "uPDATED_TIME")]
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
}
|
|
|
|
}
|