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.
20 lines
519 B
C#
20 lines
519 B
C#
using SOA.Persistent;
|
|
using System.ComponentModel;
|
|
|
|
namespace ibk.IPD.Entity.IpdPs
|
|
{
|
|
public class OutLine
|
|
{
|
|
//横坐标X起始位置
|
|
[Persistent("ORIGIN"), DisplayName("横坐标X起始位置")]
|
|
public int ORIGIN { get; set; }
|
|
|
|
//横坐标X终止位置
|
|
[Persistent("END"), DisplayName("横坐标X终止位置")]
|
|
public int END { get; set; }
|
|
|
|
//高度
|
|
[Persistent("HEIGHT"), DisplayName("高度")]
|
|
public int HEIGHT { get; set; }
|
|
}
|
|
} |