UserInfoPO.java 674 B

1234567891011121314151617181920212223242526272829
  1. package com.ctsi.Auth.entity;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import io.swagger.annotations.ApiModel;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. /**
  7. * 用户信息表;
  8. * @author : machaoyi
  9. * @date : 2024-1-10
  10. */
  11. @ApiModel(value = "获取当前用户信息",description = "")
  12. @TableName("sys_user_detail")
  13. public class UserInfoPO implements Serializable,Cloneable{
  14. /** 姓名 */
  15. @ApiModelProperty(value = "姓名",notes = "")
  16. private String name ;
  17. /** 姓名 */
  18. public String getName(){
  19. return this.name;
  20. }
  21. /** 姓名 */
  22. public void setName(String name){
  23. this.name=name;
  24. }
  25. }