提交
This commit is contained in:
162
ZR.Model/MES/pro/ProWorklplan_v2.cs
Normal file
162
ZR.Model/MES/pro/ProWorklplan_v2.cs
Normal file
@@ -0,0 +1,162 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using SqlSugar;
|
||||
|
||||
/*
|
||||
* @author : xkdong@163.com
|
||||
* @date : 2024-1-12
|
||||
* @desc : 生产计划v2
|
||||
*/
|
||||
namespace Model.DBModel
|
||||
{
|
||||
/// <summary>
|
||||
/// 生产计划v2
|
||||
/// </summary>
|
||||
[SugarTable("pro_workplan_v2", TableDescription = "生产计划v2")]
|
||||
public class ProWorklplan_v2
|
||||
{
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// WP2024030001
|
||||
/// </summary>
|
||||
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
|
||||
public string Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 零件号
|
||||
/// </summary>
|
||||
public string Partnumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 产品描述
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "product_name")]
|
||||
public string ProductName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 颜色代码
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "color_code")]
|
||||
public string ColorCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 本周要货数量
|
||||
/// </summary>
|
||||
|
||||
[SugarColumn(ColumnName = "require_num")]
|
||||
public float RequireNum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 产品合格率
|
||||
/// </summary>
|
||||
|
||||
[SugarColumn(ColumnName = "qualification_rate")]
|
||||
public float QualificationRate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 每挂数量
|
||||
/// </summary>
|
||||
|
||||
[SugarColumn(ColumnName = "every_hanger_num")]
|
||||
public float EveryHangerNum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 生产节拍(分钟)
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "production_beat")]
|
||||
public decimal ProductionBeat { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 总挂具数
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "all_hanger_num")]
|
||||
public float AllHangerNum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单需生产挂具数量
|
||||
/// </summary>
|
||||
///
|
||||
[SugarColumn(ColumnName = "require_hanger")]
|
||||
public float RequireHanger { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 圈数
|
||||
/// </summary>
|
||||
///
|
||||
[SugarColumn(ColumnName = "turn_number")]
|
||||
public float TurnNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单生产时间(分钟)
|
||||
/// </summary>
|
||||
|
||||
[SugarColumn(ColumnName = "product_time")]
|
||||
public int ProductTime { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 未排程数
|
||||
/// </summary>
|
||||
|
||||
[SugarColumn(ColumnName = "no_schedule")]
|
||||
public int NoSchedule { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 毛坯号
|
||||
/// </summary>
|
||||
|
||||
[SugarColumn(ColumnName = "blank_num")]
|
||||
public int BlankNum { get; set; }
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 年
|
||||
/// </summary>
|
||||
///
|
||||
[SugarColumn(ColumnName = "year")]
|
||||
public float Year { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 周
|
||||
/// </summary>
|
||||
///
|
||||
|
||||
|
||||
[SugarColumn(ColumnName = "week")]
|
||||
public float Week { 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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user