|
|
@@ -57,6 +57,79 @@ public class SysLogoConfigVO extends BaseEntity
|
|
|
@Excel(name = "首页banner")
|
|
|
@ApiModelProperty(value = "首页banner")
|
|
|
private String homepageBanner;
|
|
|
+
|
|
|
+ /** 用户身份,11是教职工,22是学生 */
|
|
|
+ @Excel(name = "用户身份,11是教职工,22是学生")
|
|
|
+ @ApiModelProperty(value = "用户身份,11是教职工,22是学生")
|
|
|
+ private String userType;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "智能锁配置1是有,0是无")
|
|
|
+ private Integer smartLock;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "气瓶标签配置 1是有,0是无")
|
|
|
+ private Integer airBottle;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "返回时间")
|
|
|
+ private Integer returnTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "注销时间")
|
|
|
+ private Integer logoutTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "是否启用信息牌 0不启用 1启用")
|
|
|
+ private Integer isStart;
|
|
|
+
|
|
|
+ public static long getSerialVersionUID() {
|
|
|
+ return serialVersionUID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUserType() {
|
|
|
+ return userType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserType(String userType) {
|
|
|
+ this.userType = userType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getSmartLock() {
|
|
|
+ return smartLock;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSmartLock(Integer smartLock) {
|
|
|
+ this.smartLock = smartLock;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getAirBottle() {
|
|
|
+ return airBottle;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAirBottle(Integer airBottle) {
|
|
|
+ this.airBottle = airBottle;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getReturnTime() {
|
|
|
+ return returnTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReturnTime(Integer returnTime) {
|
|
|
+ this.returnTime = returnTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getLogoutTime() {
|
|
|
+ return logoutTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLogoutTime(Integer logoutTime) {
|
|
|
+ this.logoutTime = logoutTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getIsStart() {
|
|
|
+ return isStart;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsStart(Integer isStart) {
|
|
|
+ this.isStart = isStart;
|
|
|
+ }
|
|
|
+
|
|
|
public void setId(Long id)
|
|
|
{
|
|
|
this.id = id;
|