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.
92 lines
2.4 KiB
C#
92 lines
2.4 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HighWayIot.Repository.domain
|
|
{
|
|
[SugarTable("PRODUCT_PLANINFO")]
|
|
public class ProductPlanInfo
|
|
{
|
|
/// <summary>
|
|
/// 主键标识
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "OBJID", IsPrimaryKey = true, IsIdentity = true)]
|
|
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 = "SALEORDER_CODE")]
|
|
public string saleOrderCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 销售订单行号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SALEORDER_LINENUMBER")]
|
|
public string saleOrderLineNumber { 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 productLinCode { 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 = "IS_FLAG")]
|
|
public int isFlag { get; set; }
|
|
}
|
|
}
|