1234567891011121314151617181920212223242526272829 |
- package com.huimv.manage.sys.entity.dto;
- import lombok.Data;
- @Data
- public class UserAccountDto {
- private Integer id;
- private String userName;
- private Integer male;
- private String birthday;
- private String mobile;
- private String address;
- private String job;
- private String remark;
- private String userId;
- private String accountName;
- private Integer accountStatus;
- }
|