初始代码
This commit is contained in:
19
sky-pojo/src/main/java/com/sky/dto/PasswordEditDTO.java
Normal file
19
sky-pojo/src/main/java/com/sky/dto/PasswordEditDTO.java
Normal file
@@ -0,0 +1,19 @@
|
||||
package com.sky.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@Data
|
||||
public class PasswordEditDTO implements Serializable {
|
||||
|
||||
//员工id
|
||||
private Long empId;
|
||||
|
||||
//旧密码
|
||||
private String oldPassword;
|
||||
|
||||
//新密码
|
||||
private String newPassword;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user