123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Xml.Schema;
- using System.Xml.Serialization;
- namespace MECF.Framework.Common.Layout
- {
- public class ProcessLayoutCellItem
- {
- [XmlAttribute(AttributeName = "CellId", Form = XmlSchemaForm.Unqualified, DataType = "int")]
- public int CellId { get; set; }
- [XmlAttribute(AttributeName = "Name", Form = XmlSchemaForm.Unqualified, DataType = "string")]
- public string Name { get; set; }
- /// <summary>
- /// 模块名称
- /// </summary>
- [XmlAttribute(AttributeName = "ModuleName", Form = XmlSchemaForm.Unqualified, DataType = "string")]
- public string ModuleName { get; set; }
- /// <summary>
- /// 宽度
- /// </summary>
- [XmlAttribute(AttributeName = "Width", Form = XmlSchemaForm.Unqualified, DataType = "int")]
- public int Width { get; set; }
- [XmlAttribute(AttributeName = "Height", Form = XmlSchemaForm.Unqualified, DataType = "int")]
- public int Height { get; set; }
- [XmlAttribute(AttributeName = "Left", Form = XmlSchemaForm.Unqualified, DataType = "int")]
- public int Left { get; set; }
- [XmlAttribute(AttributeName = "Top", Form = XmlSchemaForm.Unqualified, DataType = "int")]
- public int Top { get; set; }
- /// <summary>
- /// 类型
- /// </summary>
- [XmlAttribute(AttributeName = "Type", Form = XmlSchemaForm.Unqualified, DataType = "string")]
- public string Type { get; set; }
- }
- }
|