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
642 B
C#

using SOA.Persistent;
using System.ComponentModel;
namespace ibk.IPD.Entity.IpdPs
{
public class CUT_POS_INFO
{
//切割点X1
[Persistent("POS_X_1"), DisplayName("切割点X1")]
public decimal POS_X_1 { get; set; }
//切割点Y1
[Persistent("POS_Y_1"), DisplayName("切割点Y1")]
public decimal POS_Y_1 { get; set; }
//切割点X2
[Persistent("POS_X_2"), DisplayName("切割点X2")]
public decimal POS_X_2 { get; set; }
//切割点Y2
[Persistent("POS_Y_2"), DisplayName("切割点Y2")]
public decimal POS_Y_2 { get; set; }
}
}