| | |
| | | [DisplayName("文档名称")] |
| | | public string DOC_NAME { get; set; } |
| | | /// <summary> |
| | | /// 文档类型(0Bartender|1HansLaser大族激光|2Others其他模板) |
| | | /// 文档类型(0Others其他文档|1Manual说明书|2Test测试文档|3Guide操作指引) |
| | | /// </summary> |
| | | [DisplayName("文档类型(0Bartender|1HansLaser大族激光|2Others其他模板)")] |
| | | [DisplayName("文档类型(0Others其他文档|1Manual说明书|2Test测试文档|3Guide操作指引)")] |
| | | public int DOC_TYPE { get; set; } |
| | | /// <summary> |
| | | /// 文档版本 |
| | |
| | | */ |
| | | |
| | | /// <summary> |
| | | /// 枚举:文档类型(0Bartender|1HansLaser大族激光|2Others其他模板) |
| | | /// 枚举:文档类型(0Others其他文档|1Manual说明书|2Test测试文档|3Guide操作指引) |
| | | /// </summary> |
| | | public enum DOC_TYPEs |
| | | { |
| | | [Description("Bartender")] |
| | | Bartender = 0, |
| | | [Description("大族激光")] |
| | | HansLaser = 1, |
| | | [Description("其他模板")] |
| | | Others = 2, |
| | | [Description("其他文档")] |
| | | Others = 0, |
| | | [Description("说明书")] |
| | | Manual = 1, |
| | | [Description("测试文档")] |
| | | Test = 2, |
| | | [Description("操作指引")] |
| | | Guide = 3, |
| | | } |
| | | #endregion |
| | | |