You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Admin.Core.Model.ViewModels
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 钣金计划
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class SheetMetaPlanInfoView
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 下发计划的ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "OBJ_ID")]
|
|
|
|
|
public int ObjID { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 计划编码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "PLAN_CODE")]
|
|
|
|
|
public string PlanCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订单编码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ORDER_CODE")]
|
|
|
|
|
public string OrderCode { 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 = "PRODUCTLINE_CODE")]
|
|
|
|
|
public string ProductLineCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 计划数量
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "PLAN_AMOUNT")]
|
|
|
|
|
public int PlanAmount { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 完成数量
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "COMPLETE_AMOUNT")]
|
|
|
|
|
public int CompleteAmount { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 开始时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "BEGIN_TIME")]
|
|
|
|
|
public DateTime BeginTime { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 结束时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "END_TIME")]
|
|
|
|
|
public DateTime EndTime { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 产品型号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "MATERIAL_SPECIFICATIONS")]
|
|
|
|
|
public string MaterialSpecificatons { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|