week1/bwie-common/src/main/java/com/bwie/common/domain/User.java

23 lines
418 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.bwie.common.domain;
import lombok.Data;
import java.math.BigDecimal;
/**
* @Authorweiran
* @Packagecom.bwie.common.domain
* @Projectweek1
* @nameUser
* @Date2024/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;
}