package com.ycl.dto.casePool;
|
|
import com.ycl.dto.caseHandler.DispatchInfoParam;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotBlank;
|
import javax.validation.constraints.NotNull;
|
|
@Data
|
public class VideoInspectParam extends DispatchInfoParam {
|
|
private Long baseId;
|
|
@ApiModelProperty(value = "状态")
|
private Integer state;
|
|
/**
|
* 大类
|
*/
|
@ApiModelProperty(value = "大类")
|
@NotNull(message = "不允许大类为空")
|
private Integer categoryId;
|
|
|
/**
|
* 小类
|
*/
|
@ApiModelProperty(value = "小类")
|
@NotNull(message = "不允许小类为空")
|
private Integer typeId;
|
|
/**
|
* 关联商铺名称
|
*/
|
@ApiModelProperty(value = "关联商铺名称")
|
private Integer shopName;
|
|
/**
|
* 问题描述
|
*/
|
@ApiModelProperty(value = "问题描述")
|
@NotBlank(message = "不允许问题描述为空")
|
private String description;
|
|
@ApiModelProperty(value = "是否关联商铺")
|
private Integer linkShop;
|
}
|