| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- package com.izouma.awesomeadmin.model;
- import com.fasterxml.jackson.annotation.JsonAutoDetect;
- import com.fasterxml.jackson.annotation.JsonInclude;
- /**
- * user_info 实体类
- * Tue Apr 17 10:32:49 CST 2018 Suo Chen Cheng
- */
- @JsonAutoDetect
- @JsonInclude(JsonInclude.Include.NON_NULL)
- public class Zouma {
- private String id;
- private String userName;
- private String position;
- private String workType;
- private String remarks;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getUserName() {
- return userName;
- }
- public void setUserName(String userName) {
- this.userName = userName;
- }
- public String getPosition() {
- return position;
- }
- public void setPosition(String position) {
- this.position = position;
- }
- public String getWorkType() {
- return workType;
- }
- public void setWorkType(String workType) {
- this.workType = workType;
- }
- public String getRemarks() {
- return remarks;
- }
- public void setRemarks(String remarks) {
- this.remarks = remarks;
- }
- }
|