feat(用户): 修改密码
This commit is contained in:
parent
7f94911665
commit
9693cfc524
|
@ -0,0 +1,12 @@
|
|||
package com.guwan.backend;
|
||||
|
||||
import com.guwan.backend.entity.BookOfUser;
|
||||
import com.guwan.backend.enums.ReadStatus;
|
||||
|
||||
public class Demo1 {
|
||||
public static void main(String[] args) {
|
||||
BookOfUser bookOfUser = new BookOfUser();
|
||||
bookOfUser.setReadStatus(ReadStatus.yes);
|
||||
System.out.println("bookOfUser = " + bookOfUser);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue