97 lines
3.0 KiB
C#
97 lines
3.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RIZO.Model.MES.product
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// 产品周计划日期表
|
|
/// </summary>
|
|
[SugarTable("pro_weekly_date")]
|
|
public class ProWeeklyDate
|
|
{
|
|
/// <summary>
|
|
/// 主键ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 关联的周计划ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fk_weekly_id", IsNullable = true)]
|
|
public long? FkWeeklyId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 周计划编码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "plancode", IsNullable = true, Length = 50, ColumnDescription = "周几")]
|
|
public string PlanCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 周中日期
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "weekdate", IsNullable = true, ColumnDescription = "周中日期")]
|
|
public DateTime? WeekDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 星期几(如:周一、周二等)
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "dayofweek", IsNullable = true, Length = 50, ColumnDescription = "周几")]
|
|
public string DayOfWeek { get; set; }
|
|
|
|
/// <summary>
|
|
/// 产品类型
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "producttype", IsNullable = true, Length = 255, ColumnDescription = "产品类型")]
|
|
public string ProductType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 计划数量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "plannum", IsNullable = true, ColumnDescription = "计划数量")]
|
|
public int? PlanNum { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否变更(是/否)
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ischange", IsNullable = true, Length = 50, ColumnDescription = "是否变更")]
|
|
public string IsChange { get; set; }
|
|
|
|
/// <summary>
|
|
/// 实际数量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "actual_qt", IsNullable = true, ColumnDescription = "实际数量")]
|
|
public int? ActualQt { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "createby", IsNullable = true, Length = 50)]
|
|
public string CreateBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "createdtime", IsNullable = true)]
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "updateby", IsNullable = true, Length = 50)]
|
|
public string UpdateBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "updatedtime", IsNullable = true)]
|
|
public DateTime? UpdatedTime { get; set; }
|
|
}
|
|
}
|