7 changed files with 213 additions and 2 deletions
@ -0,0 +1,83 @@ |
|||||
|
package com.hxgk.lowcode.model.entity; |
||||
|
|
||||
|
import org.springframework.stereotype.Repository; |
||||
|
|
||||
|
@Repository |
||||
|
public class ManContShort { |
||||
|
//person_archives.id
|
||||
|
private Long id; |
||||
|
//工号
|
||||
|
private String number; |
||||
|
//姓名
|
||||
|
private String name; |
||||
|
//头像
|
||||
|
private String icon; |
||||
|
private Byte empType; |
||||
|
private Long key; |
||||
|
private String role; |
||||
|
private String deparment; |
||||
|
|
||||
|
public Long getId() { |
||||
|
return id; |
||||
|
} |
||||
|
|
||||
|
public void setId(Long id) { |
||||
|
this.id = id; |
||||
|
} |
||||
|
|
||||
|
public String getNumber() { |
||||
|
return number; |
||||
|
} |
||||
|
|
||||
|
public void setNumber(String number) { |
||||
|
this.number = number; |
||||
|
} |
||||
|
|
||||
|
public String getName() { |
||||
|
return name; |
||||
|
} |
||||
|
|
||||
|
public void setName(String name) { |
||||
|
this.name = name; |
||||
|
} |
||||
|
|
||||
|
public String getIcon() { |
||||
|
return icon; |
||||
|
} |
||||
|
|
||||
|
public void setIcon(String icon) { |
||||
|
this.icon = icon; |
||||
|
} |
||||
|
|
||||
|
public Byte getEmpType() { |
||||
|
return empType; |
||||
|
} |
||||
|
|
||||
|
public void setEmpType(Byte empType) { |
||||
|
this.empType = empType; |
||||
|
} |
||||
|
|
||||
|
public Long getKey() { |
||||
|
return key; |
||||
|
} |
||||
|
|
||||
|
public void setKey(Long key) { |
||||
|
this.key = key; |
||||
|
} |
||||
|
|
||||
|
public String getRole() { |
||||
|
return role; |
||||
|
} |
||||
|
|
||||
|
public void setRole(String role) { |
||||
|
this.role = role; |
||||
|
} |
||||
|
|
||||
|
public String getDeparment() { |
||||
|
return deparment; |
||||
|
} |
||||
|
|
||||
|
public void setDeparment(String deparment) { |
||||
|
this.deparment = deparment; |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue