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.
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.KuaidiyuanEntity ;
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 KuaidiyuanModel implements Serializable {
private static final long serialVersionUID = 1L ;
/**
* 密码
*/
private String mima ;
/**
* 员工姓名
*/
private String yuangongxingming ;
/**
* 性别
*/
private String xingbie ;
/**
* 员工电话
*/
private String yuangongdianhua ;
/**
* 头像
*/
private String touxiang ;
/**
* 设置:密码
*/
public void setMima ( String mima ) {
this . mima = mima ;
}
/**
* 获取:密码
*/
public String getMima ( ) {
return mima ;
}
/**
* 设置:员工姓名
*/
public void setYuangongxingming ( String yuangongxingming ) {
this . yuangongxingming = yuangongxingming ;
}
/**
* 获取:员工姓名
*/
public String getYuangongxingming ( ) {
return yuangongxingming ;
}
/**
* 设置:性别
*/
public void setXingbie ( String xingbie ) {
this . xingbie = xingbie ;
}
/**
* 获取:性别
*/
public String getXingbie ( ) {
return xingbie ;
}
/**
* 设置:员工电话
*/
public void setYuangongdianhua ( String yuangongdianhua ) {
this . yuangongdianhua = yuangongdianhua ;
}
/**
* 获取:员工电话
*/
public String getYuangongdianhua ( ) {
return yuangongdianhua ;
}
/**
* 设置:头像
*/
public void setTouxiang ( String touxiang ) {
this . touxiang = touxiang ;
}
/**
* 获取:头像
*/
public String getTouxiang ( ) {
return touxiang ;
}
}