package com.panzhihua.westcommittee.model.dto;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
import javax.validation.constraints.NotNull;
|
|
@Data
|
@ApiModel("诉求分配dto")
|
public class AssignComplainDto {
|
@ApiModelProperty("诉求id")
|
@NotNull
|
private Long complainId;
|
@ApiModelProperty("部门id")
|
@NotNull
|
private Integer deptId;
|
@ApiModelProperty("备注")
|
private String remark;
|
}
|