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.
27 lines
848 B
C#
27 lines
848 B
C#
using SOA.Persistent;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
|
|
namespace ibk.IPD.Entity.IpdPs
|
|
{
|
|
public class RACTLAYOUT
|
|
{
|
|
[Persistent("WIDTH"), DisplayName("宽度")]
|
|
public string WIDTH { get; set; }
|
|
|
|
[Persistent("LINE_LIST"), DisplayName("水平线集合")]
|
|
public List<OutLine> LINE_LIST { get; set; }
|
|
|
|
[Persistent("LOWEST_LINE"), DisplayName("最低水平线")]
|
|
public OutLine LOWEST_LINE { get; set; }
|
|
|
|
[Persistent("LOWEST_LINE_IDX"), DisplayName("最低水平线索引")]
|
|
public int LOWEST_LINE_IDX { get; set; }
|
|
|
|
[Persistent("LTRESULT_POS"), DisplayName("结果集合")]
|
|
public List<RESULT_POS> LTRESULTPOS { get; set; }
|
|
|
|
[Persistent("RATIO"), DisplayName("替代率")]
|
|
public string RATIO { get; set; }
|
|
}
|
|
} |