44323
2023-10-16 55a2e144d6f2d88332a43ac0c522ca9b82416844
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;
}