using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using SOA.Persistent; using SlabHandle; namespace MES.Interface { public class Instance { public string plate_no { get; set; } public double l { get; set; } //长 public double w { get; set; } //宽 // 是否可以旋转 public bool isRotateEnable = false; public List squareList; } }