namespace Yw.Application { /// /// 更新泵曲线映射 /// public class UpdatePumpCurveMappingInput { /// /// id /// [Required, Range(1, long.MaxValue, ErrorMessage = "ID 必须大于0")] public long ID { get; set; } /// /// 别名 /// [Required] public string OtherName { get; set; } } }