using YBEE.EQM.Core;
namespace YBEE.EQM.Application;
///
/// 添加监测数据发布内容输入参数
///
public class AddExamDataPublishInput
{
///
/// 监测计划ID
///
[Required]
public int ExamPlanId { get; set; }
///
/// 发布类型
///
[Required]
public DataPublishType Type { get; set; }
///
/// 发布名称
///
[Required, StringLength(100)]
public string Name { get; set; }
///
/// 备注
///
[StringLength(2000)]
public string Remark { get; set; }
}
///
/// 更新监测数据发布内容输入参数
///
public class UpdateExamDataPublishInput: BaseId
{
///
/// 发布名称
///
[Required, StringLength(100)]
public string Name { get; set; }
///
/// 备注
///
[StringLength(2000)]
public string Remark { get; set; }
}