23 lines
418 B
Java
23 lines
418 B
Java
package com.bwie.common.domain;
|
||
|
||
import lombok.Data;
|
||
|
||
import java.math.BigDecimal;
|
||
|
||
/**
|
||
* @Author:weiran
|
||
* @Package:com.bwie.common.domain
|
||
* @Project:week1
|
||
* @name:User
|
||
* @Date:2024/7/23 9:22
|
||
*/
|
||
@Data
|
||
public class User {
|
||
private Integer userId;
|
||
private String userName;
|
||
private String userPhone;
|
||
private String userPwd;
|
||
private BigDecimal userMoney;
|
||
private String userEmail;
|
||
}
|