| | |
| | | using System.ComponentModel.DataAnnotations; |
| | | using HStation.Assets; |
| | | using System.ComponentModel.DataAnnotations; |
| | | |
| | | namespace HStation.Dto.Assets |
| | | { |
| | |
| | | public long ID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 系列ID |
| | | /// </summary> |
| | | public long SeriesID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 口径 |
| | | /// </summary> |
| | | public string Caliber { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 名称 |
| | | /// </summary> |
| | | public string Name { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 创建人 |
| | | /// </summary> |
| | | public string CreateName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 创建时间 |
| | | /// </summary> |
| | | public string CreateTime { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 材料 |
| | |
| | | public string? Description { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 类型 |
| | | /// </summary> |
| | | public eValveSeriesType Type { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 排序码 |
| | | /// </summary> |
| | | public int SortCode { get; set; } |