| | |
| | | public class Dt_Tools : BaseEntity |
| | | { |
| | | |
| | | |
| | | /// <summary> |
| | | /// ä¸»é® |
| | | /// </summary> |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] |
| | | public int ID { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// å·¥å
·å |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "å·¥å
·åç§°")] |
| | | public string ToolName { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// å·¥å
·è§æ ¼ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "è§æ ¼")] |
| | | public float Specification { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å·¥å
·åä½ï¼ä¸ªï¼ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "åä½")] |
| | | public string ToolUnit { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 夿³¨ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "夿³¨")] |
| | | public string Toolremark { get; set; } |
| | | |