using HStation.Service.Assets; namespace HStation.Dto.Assets { public class AddValveMainInput { /// /// 系列ID /// public long SeriesID { get; set; } /// /// 口径 /// public string Caliber { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 创建人 /// public string CreateName { get; set; } /// /// 创建时间 /// public string CreateTime { get; set; } /// /// 材料 /// public string Material { get; set; } /// /// 系数 /// public string Coefficient { get; set; } /// /// 说明 /// public string? Description { get; set; } /// /// 类型 /// public eValveSeriesType Type { get; set; } /// /// 排序码 /// public int SortCode { get; set; } } }