using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SWS.Model { /// /// 材料表配置 /// 用于生成图纸的材料表 /// public class BomConfig { /// /// 材料表宽度 /// public int Width { get; set; } /// /// 材料表高度 /// public int Height { get; set; } /// /// 材料表一行有几页A4表格 /// public int RowPageCount { get; set; } /// /// 行数量 /// public int RowCount { get; set; } /// /// 行高度 /// public int RowHeight { get; set; } /// /// 第1行第1列的X坐标 /// public int Column1X { get; set; } /// /// 第1行第1列的Y坐标 /// public int Column1Y { get; set; } /// /// 第1行第1列的宽度 /// public int Column1Width { get; set; } /// /// 第1行第1列的对齐方式 0:居左对齐 1:居中对齐 /// public int Column1Align { get; set; } /// /// 第1行第2列的X坐标 /// public int Column2X { get; set; } /// /// 第1行第2列的Y坐标 /// public int Column2Y { get; set; } /// /// 第1行第2列的宽度 /// public int Column2Width { get; set; } /// /// 第1行第2列的对齐方式 0:居左对齐 1:居中对齐 /// public int Column2Align { get; set; } /// /// 第1行第3列的X坐标 /// public int Column3X { get; set; } /// /// 第1行第3列的Y坐标 /// public int Column3Y { get; set; } /// /// 第1行第3列的宽度 /// public int Column3Width { get; set; } /// /// 第1行第3列的对齐方式 0:居左对齐 1:居中对齐 /// public int Column3Align { get; set; } /// /// 第1行第4列的X坐标 /// public int Column4X { get; set; } /// /// 第1行第4列的Y坐标 /// public int Column4Y { get; set; } /// /// 第1行第4列的宽度 /// public int Column4Width { get; set; } /// /// 第1行第4列的对齐方式 0:居左对齐 1:居中对齐 /// public int Column4Align { get; set; } /// /// 第1行第5列的X坐标 /// public int Column5X { get; set; } /// /// 第1行第5列的Y坐标 /// public int Column5Y { get; set; } /// /// 第1行第5列的宽度 /// public int Column5Width { get; set; } /// /// 第1行第5列的对齐方式 0:居左对齐 1:居中对齐 /// public int Column5Align { get; set; } /// /// 第1行第6列的X坐标 /// public int Column6X { get; set; } /// /// 第1行第6列的Y坐标 /// public int Column6Y { get; set; } /// /// 第1行第6列的宽度 /// public int Column6Width { get; set; } /// /// 第1行第6列的对齐方式 0:居左对齐 1:居中对齐 /// public int Column6Align { get; set; } } }