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;
|
}
|
}
|