1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.yssh.entity.dto;
|
| import lombok.Data;
|
| import java.util.List;
|
| /**
| * @author lishijia
| * @ClassName YsshSuYuanX00
| * @Description TODO
| * @date 2022/11/28 10:37
| * @Version 1.0
| */
| @Data
| public class YsshSuYuanX00UpdateBatchParam {
| private String newName;
| private List<Integer> ids;
| }
|
|