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.
109 lines
3.5 KiB
C#
109 lines
3.5 KiB
C#
using Newtonsoft.Json;
|
|
using SOA.Persistent;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ibk.IPD.Entity.IPD_PS
|
|
{
|
|
[Serializable]
|
|
[Table("CP_REP_HIS")]
|
|
[JsonObject]
|
|
public class CP_REP_HIS
|
|
{
|
|
//产品代码
|
|
[Persistent("PROD_CD"), DisplayName("产品代码")]
|
|
public string PROD_CD { get; set; }
|
|
|
|
//物料号
|
|
[Persistent("MAT_NO"), DisplayName("物料号")]
|
|
public string MAT_NO { get; set; }
|
|
|
|
//录入日期
|
|
[Persistent("INS_DATE"), DisplayName("录入日期")]
|
|
public string INS_DATE { get; set; }
|
|
|
|
//替代代码(1:订单材->余材 2:余材->订单材 3:订单材-> 订单材)
|
|
[Persistent("REP_TYP"), DisplayName("替代代码(1:订单材->余材 2:余材->订单材 3:订单材-> 订单材)")]
|
|
public string REP_TYP { get; set; }
|
|
|
|
//变更前订单号
|
|
[Persistent("UPD_BEF_ORD"), DisplayName("变更前订单号")]
|
|
public string UPD_BEF_ORD { get; set; }
|
|
|
|
//变更前订单序列号
|
|
[Persistent("UPD_BEF_ORD_ITEM"), DisplayName("变更前订单序列号")]
|
|
public string UPD_BEF_ORD_ITEM { get; set; }
|
|
|
|
//变更前客户代码
|
|
[Persistent("UPD_BEF_CUST_CD"), DisplayName("变更前客户代码")]
|
|
public string UPD_BEF_CUST_CD { get; set; }
|
|
|
|
//变更后订单号
|
|
[Persistent("UPD_AFT_ORD"), DisplayName("变更后订单号")]
|
|
public string UPD_AFT_ORD { get; set; }
|
|
|
|
//变更后订单序列号
|
|
[Persistent("UPD_AFT_ORD_ITEM"), DisplayName("变更后订单序列号")]
|
|
public string UPD_AFT_ORD_ITEM { get; set; }
|
|
|
|
//变更后客户代码
|
|
[Persistent("UPD_AFT_CUST_CD"), DisplayName("变更后客户代码")]
|
|
public string UPD_AFT_CUST_CD { get; set; }
|
|
|
|
|
|
//替代方法
|
|
[Persistent("REP_KND"), DisplayName("替代方法")]
|
|
public string REP_KND { get; set; }
|
|
|
|
//录入人员
|
|
[Persistent("INS_EMP"), DisplayName("录入人员")]
|
|
public string INS_EMP { get; set; }
|
|
|
|
|
|
//变更程序 ID
|
|
[Persistent("UPD_PGMID"), DisplayName("变更程序 ID")]
|
|
public string UPD_PGMID { get; set; }
|
|
|
|
|
|
//强制替代代码
|
|
[Persistent("FORCE_CD"), DisplayName("强制替代代码")]
|
|
public string FORCE_CD { get; set; }
|
|
|
|
//备注
|
|
[Persistent("REP_REMARK"), DisplayName("备注")]
|
|
public string REP_REMARK { get; set; }
|
|
|
|
//存货重量
|
|
[Persistent("UPD_BEF_WGT"), DisplayName("存货重量")]
|
|
public int UPD_BEF_WGT { get; set; }
|
|
|
|
//余材原因代码
|
|
[Persistent("WOO_RSN"), DisplayName("余材原因代码")]
|
|
public string WOO_RSN { get; set; }
|
|
|
|
//余材原因备注/责任单位
|
|
[Persistent("RSN_NAME"), DisplayName("余材原因备注/责任单位")]
|
|
public string RSN_NAME { get; set; }
|
|
|
|
//是否最后一笔
|
|
[Persistent("LASTEST_FL"), DisplayName("是否最后一笔")]
|
|
public string LASTEST_FL { get; set; }
|
|
|
|
//替代时板坯堆放仓库
|
|
[Persistent("UPD_CUR_INV"), DisplayName("替代时板坯堆放仓库")]
|
|
public string UPD_CUR_INV { get; set; }
|
|
|
|
//
|
|
[Persistent("PROC_CD"), DisplayName("")]
|
|
public string PROC_CD { get; set; }
|
|
|
|
//
|
|
[Persistent("LOC"), DisplayName("")]
|
|
public string LOC { get; set; }
|
|
}
|
|
}
|