namespace Myshipping.FlowCenter.Entity; /// /// 流程泳道 /// public class FlowArea { public const string YLANE = "y-lane"; //y泳道 public const string XLANE = "x-lane"; //x泳道 /// /// 泳道Id /// public string id { get; set; } /// /// 名称 /// public string name { get; set; } /// /// 类型 /// public string type { get; set; } /// /// 图标 /// public string icon { get; set; } /// /// x坐标 /// public int x { get; set; } /// /// y坐标 /// public int y { get; set; } /// /// 宽度 /// public int width { get; set; } /// /// 高度 /// public int height { get; set; } }