| 1234567891011121314151617181920212223242526272829 |
- package com.ctsi.Auth.entity;
- import com.baomidou.mybatisplus.annotation.TableName;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * 用户信息表;
- * @author : machaoyi
- * @date : 2024-1-10
- */
- @ApiModel(value = "获取当前用户信息",description = "")
- @TableName("sys_user_detail")
- public class UserInfoPO implements Serializable,Cloneable{
- /** 姓名 */
- @ApiModelProperty(value = "姓名",notes = "")
- private String name ;
- /** 姓名 */
- public String getName(){
- return this.name;
- }
- /** 姓名 */
- public void setName(String name){
- this.name=name;
- }
- }
|