燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2023-04-27 1d1b21f7f9416dc6a350dc83506364bb822e9e1c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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;
 
    public String getNewName() {
        return newName;
    }
 
    public void setNewName(String newName) {
        this.newName = newName;
    }
 
    public List<Integer> getIds() {
        return ids;
    }
 
    public void setIds(List<Integer> ids) {
        this.ids = ids;
    }
}