44323
2023-10-11 6a8b55a2183720ff6106f581695298168896cadc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.dsh.guns.modular.system.model;
 
import lombok.Data;
 
import java.util.List;
 
/**
 * 运营商重置密码
 */
@Data
public class OperatorRestPwd {
    private List<Integer> ids;
 
    private String password;
}