44323
2023-12-28 c31f9914a85889bbe090d907ed53cc7a2fdcf8b6
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;
}