feat(用户): 修改密码

This commit is contained in:
ovo 2024-12-23 14:57:08 +08:00
parent 7f94911665
commit 9693cfc524
1 changed files with 12 additions and 0 deletions

View File

@ -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);
}
}