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.

24 lines
635 B
C#

5 months ago
using SOA.Persistent;
using System;
using System.ComponentModel;
namespace SlabHandle
{
[Serializable, Table("QP_QLTY_TECH")]
public class QP_QLTY_TECH
{
//订单号
[Persistent("ORD_NO"), DisplayName("订单号")]
public string ORD_NO { get; set; }
//订单序列号
[Persistent("ORD_ITEM"), DisplayName("订单序列号")]
public string ORD_ITEM { get; set; }
[Persistent("MLT_PROC_CD"), DisplayName("")]
public string MLT_PROC_CD { get; set; }
[Persistent("RK"), DisplayName("KND最大排序")]
public string RK { get; set; }
}
}