Helius
2022-11-12 067546725a07d08e0346ebf3a410d481e97e5730
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.xcong.farmer.cms.modules.system.dto;
 
import io.swagger.annotations.ApiModelProperty;
import io.swagger.annotations.ApiOperation;
import lombok.Data;
 
import javax.validation.constraints.NotBlank;
 
/**
 * @author wzy
 * @date 2022-08-19
 **/
@Data
@ApiOperation(value = "GroupDeleteDto", notes = "删除分组")
public class GroupDeleteDto {
 
    @NotBlank(message = "参数错误")
    @ApiModelProperty(value = "ids")
    private String ids;
}