puzhibing
2023-12-15 3ffd3ab0899390721aabe6fc1a0f2d8a6a038759
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.system.api.domain.dto;
 
/**
 * @author jqs34
 * @ClassName AppBaseBathDto
 * @description: TODO
 * @date 2023年04月26日
 * @version: 1.0
 */
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class AppBaseBathDto extends AppBaseDto{
 
    @ApiModelProperty(value = "请求对象id集合 多个用,隔开")
    private String ids;
 
}