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.

158 lines
5.0 KiB
C#

using Newtonsoft.Json;
using SOA.Persistent;
using System;
using System.ComponentModel;
namespace SlabHandle
{
[Serializable, Table("CP_MOVE_SLT")]
[JsonObject]
public class CP_MOVE_SLT
{
//物料号
[Persistent("MV_NO"), DisplayName("物料号")]
public string MV_NO { get; set; }
//转库单号
[Persistent("MV_LST_NO"), DisplayName("转库单号")]
public string MV_LST_NO { get; set; }
//物料号
[Persistent("MAT_NO"), DisplayName("物料号")]
public string MAT_NO { get; set; }
//产品总数量
[Persistent("PROD_TOT_CNT"), DisplayName("产品总数量")]
public int PROD_TOT_CNT { get; set; }
//产品顺序
[Persistent("PROD_TOT_SEQ"), DisplayName("产品顺序")]
public int PROD_TOT_SEQ { get; set; }
//产品代码
[Persistent("PROD_CD"), DisplayName("产品代码")]
public string PROD_CD { get; set; }
//标准代号
[Persistent("APLY_STDSPEC"), DisplayName("标准代号")]
public string APLY_STDSPEC { get; set; }
//钢种
[Persistent("STLGRD"), DisplayName("钢种")]
public string STLGRD { get; set; }
//适用订单用途
[Persistent("APLY_ENDUSE_CD"), DisplayName("适用订单用途")]
public string APLY_ENDUSE_CD { get; set; }
//厚度
[Persistent("THK"), DisplayName("厚度")]
public Decimal THK { get; set; }
//宽度
[Persistent("WID"), DisplayName("宽度")]
public Decimal WID { get; set; }
//长度
[Persistent("LEN"), DisplayName("长度")]
public Decimal LEN { get; set; }
//重量
[Persistent("WGT"), DisplayName("重量")]
public Decimal WGT { get; set; }
//产品等级
[Persistent("PROD_GRD"), DisplayName("产品等级")]
public string PROD_GRD { get; set; }
//定尺分类
[Persistent("SIZE_KND"), DisplayName("定尺分类")]
public string SIZE_KND { get; set; }
//始发工厂
[Persistent("FR_INV"), DisplayName("始发工厂")]
public string FR_INV { get; set; }
//始发工厂堆放位置
[Persistent("FR_INV_LOC"), DisplayName("始发工厂堆放位置")]
public string FR_INV_LOC { get; set; }
//终点工厂
[Persistent("TO_INV"), DisplayName("终点工厂")]
public string TO_INV { get; set; }
//终点工厂堆放位置
[Persistent("TO_INV_LOC"), DisplayName("终点工厂堆放位置")]
public string TO_INV_LOC { get; set; }
//移送日期
[Persistent("MOVE_DATE"), DisplayName("移送日期")]
public string MOVE_DATE { get; set; }
//移送时间
[Persistent("MOVE_TIME"), DisplayName("移送时间")]
public string MOVE_TIME { get; set; }
//移送车辆
[Persistent("MOVE_CAR_NO"), DisplayName("移送车辆")]
public string MOVE_CAR_NO { get; set; }
//确认人
[Persistent("MOVE_EMP"), DisplayName("确认人")]
public string MOVE_EMP { get; set; }
//信息发送日期
[Persistent("SND_TIME"), DisplayName("信息发送日期")]
public string SND_TIME { get; set; }
[Persistent("TRIM_FL"), DisplayName("")]
public string TRIM_FL { get; set; }
//接收产品日期
[Persistent("RCV_DATE"), DisplayName("接收产品日期")]
public string RCV_DATE { get; set; }
//产品接收人
[Persistent("RCV_EMP"), DisplayName("产品接收人")]
public string RCV_EMP { get; set; }
//PROD_CD为PP时 Y:成品 N:半成品
[Persistent("HTM_CD"), DisplayName("PROD_CD为PP时 Y:成品 N:半成品")]
public string HTM_CD { get; set; }
//是否过磅
[Persistent("LOAD_WGT_FL"), DisplayName("是否过磅")]
public string LOAD_WGT_FL { get; set; }
//运输方式
[Persistent("TRANS_WAY"), DisplayName("运输方式")]
public string TRANS_WAY { get; set; }
//运输公司
[Persistent("TRANS_COMP"), DisplayName("运输公司")]
public string TRANS_COMP { get; set; }
//运输车型
[Persistent("TRANS_TOOL"), DisplayName("运输车型")]
public string TRANS_TOOL { get; set; }
//装车时进程状态
[Persistent("PROC_CD"), DisplayName("装车时进程状态")]
public string PROC_CD { get; set; }
//车上垛位(垛位+垛层)
[Persistent("CAR_LOC"), DisplayName("车上垛位(垛位+垛层)")]
public string CAR_LOC { get; set; }
//车辆位置
[Persistent("CAR_POS"), DisplayName("车辆位置")]
public string CAR_POS { get; set; }
//A 不承担 C 承担
[Persistent("CAR_FY"), DisplayName("A 不承担 C 承担")]
public string CAR_FY { get; set; }
[Persistent("CAR_FL"), DisplayName("")]
public string CAR_FL { get; set; }
}
}