You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

137 lines
2.1 KiB

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.entity.model;
import com.entity.YonghuEntity;
import com.baomidou.mybatisplus.annotations.TableName;
import java.util.Date;
import org.springframework.format.annotation.DateTimeFormat;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.io.Serializable;
/**
* 用户
* 接收传参的实体类
*(实际开发中配合移动端接口开发手动去掉些没用的字段, 后端一般用entity就够用了
* 取自ModelAndView 的model名称
* @author
* @email
* @date 2023-02-17 16:59:28
*/
public class YonghuModel implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 密码
*/
private String mima;
/**
* 用户姓名
*/
private String yonghuxingming;
/**
* 性别
*/
private String xingbie;
/**
* 用户电话
*/
private String yonghudianhua;
/**
* 头像
*/
private String touxiang;
/**
* 设置:密码
*/
public void setMima(String mima) {
this.mima = mima;
}
/**
* 获取:密码
*/
public String getMima() {
return mima;
}
/**
* 设置:用户姓名
*/
public void setYonghuxingming(String yonghuxingming) {
this.yonghuxingming = yonghuxingming;
}
/**
* 获取:用户姓名
*/
public String getYonghuxingming() {
return yonghuxingming;
}
/**
* 设置:性别
*/
public void setXingbie(String xingbie) {
this.xingbie = xingbie;
}
/**
* 获取:性别
*/
public String getXingbie() {
return xingbie;
}
/**
* 设置:用户电话
*/
public void setYonghudianhua(String yonghudianhua) {
this.yonghudianhua = yonghudianhua;
}
/**
* 获取:用户电话
*/
public String getYonghudianhua() {
return yonghudianhua;
}
/**
* 设置:头像
*/
public void setTouxiang(String touxiang) {
this.touxiang = touxiang;
}
/**
* 获取:头像
*/
public String getTouxiang() {
return touxiang;
}
}