You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.3 KiB
63 lines
1.3 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace WebAPI.Models
|
|
{
|
|
public class OrderPlan_ZhuSu
|
|
{
|
|
public string PID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 计划号
|
|
/// </summary>
|
|
public string PLAN_NO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 计划顺序号
|
|
/// </summary>
|
|
public string PLAN_SEQ { get; set; }
|
|
|
|
/// <summary>
|
|
/// 计划状态
|
|
/// </summary>
|
|
public string PLAN_STATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 零件号
|
|
/// </summary>
|
|
public string MATERIAL_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 绑定BOM
|
|
/// </summary>
|
|
public string PBOM_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 绑定工艺路线
|
|
/// </summary>
|
|
public string ROUTE_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 计划数量
|
|
/// </summary>
|
|
public string QTY { get; set; }
|
|
|
|
/// <summary>
|
|
/// 完成数
|
|
/// </summary>
|
|
public string COMPLETE_QTY { get; set; }
|
|
|
|
/// <summary>
|
|
/// 计划日期
|
|
/// </summary>
|
|
public string PLAN_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 计划班次
|
|
/// </summary>
|
|
public string SHIFT_CODE { get; set; }
|
|
|
|
}
|
|
}
|