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.
16 lines
449 B
C#
16 lines
449 B
C#
using ibk.IPD.Entity.IpdPs;
|
|
|
|
namespace SinglePlateHandle.Common
|
|
{
|
|
public class PlaceSquare
|
|
{
|
|
public string Ord_no { get; set; } //订单号
|
|
public string ORD_ITEM { get; set; } ///订单序列号
|
|
public double x { get; set; } //X轴
|
|
public double y { get; set; } //Y轴
|
|
public double l { get; set; } //长
|
|
public double w { get; set; } //宽
|
|
|
|
public BP_ORDER_ITEM BOI;
|
|
}
|
|
} |