24 lines
617 B
Plaintext
24 lines
617 B
Plaintext
|
|
package com.sercurityControl.decision.domain.qo;
|
|||
|
|
|
|||
|
|
import io.swagger.annotations.ApiModel;
|
|||
|
|
import io.swagger.annotations.ApiModelProperty;
|
|||
|
|
import lombok.Data;
|
|||
|
|
|
|||
|
|
import javax.validation.constraints.NotBlank;
|
|||
|
|
import javax.validation.constraints.NotNull;
|
|||
|
|
|
|||
|
|
@Data
|
|||
|
|
@ApiModel("班组评价")
|
|||
|
|
public class TeamEvaluateQo {
|
|||
|
|
|
|||
|
|
@ApiModelProperty("评价类型(1-最新,2-综合)")
|
|||
|
|
@NotNull(message = "评价类型不能为空")
|
|||
|
|
private Integer evaluateType;
|
|||
|
|
|
|||
|
|
@ApiModelProperty("排序方式(ASC-正序,DESC-倒序)")
|
|||
|
|
@NotBlank(message = "排序方式不能为空")
|
|||
|
|
private String orderType;
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|