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.

56 lines
1.5 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
using SOA.Persistent;
namespace ibk.IPD.Entity.IpdPs
{
//[Serializable, Table("TEMP_DATA")]
//[JsonObject]
public class TEMP_DATA
{
//钢板号
[Persistent("PLATE_NO"), DisplayName("钢板号")]
public string PLATE_NO { get; set; }
//替代率
[Persistent("SUB_RATE"), DisplayName("替代率")]
public decimal? SUB_RATE { get; set; }
//订单号
[Persistent("ORD_NO"), DisplayName("订单号")]
public string ORD_NO { get; set; }
//订单明细号
[Persistent("ORD_ITEM"), DisplayName("订单明细号")]
public string ORD_ITEM { get; set; }
//欠量
[Persistent("DEF_NUM"), DisplayName("欠量")]
public int? DEF_NUM { get; set; }
//替代数量
[Persistent("SUB_NUM"), DisplayName("替代数量")]
public int? SUB_NUM { get; set; }
//优先级
[Persistent("SUB_PRI"), DisplayName("优先级")]
public string SUB_PRI { get; set; }
//确认FLG
[Persistent("CON_FLG"), DisplayName("确认FLG")]
public string CON_FLG { get; set; }
//使用FLG
[Persistent("USE_FLG"), DisplayName("使用FLG")]
public string USE_FLG { get; set; }
//替代类型( C-完全替代P-退判替代)
[Persistent("SUB_KND"), DisplayName("替代类型")]
public string SUB_KND { get; set; }
}
}