package com.moral.api.pojo.query.app; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; import java.util.Date; import javax.validation.constraints.NotNull; @Data @EqualsAndHashCode(callSuper = false) @Accessors(chain = true) @ApiModel(value="AppAllocationPushUserCond - 推送消息对象", description="AppAllocationPushUserCond - 推送消息对象") public class AppAllocationPushUserCond { @ApiModelProperty(value = "上报时间") @NotNull(message = "上报时间不能为空!") private Date escalationTime; @ApiModelProperty(value = "责任单位id") @NotNull(message = "责任单位不能为空!") private Integer unitId; @ApiModelProperty(value = "上报单位id") @NotNull(message = "上报单位不能为空!") private Integer escalationUnitId; @ApiModelProperty(value = "状态") @NotNull(message = "状态不能为空!") private Integer state; /** *交办单号 */ @ApiModelProperty(value = "交办单号") @NotNull(message = "单号不能为空!") private String allocationNum; }