package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.util.Date;
|
|
@TableName(schema = "web_site",value = "tb_hidden_trouble_confirmation")
|
public class HiddenTroubleApplication {
|
|
private Integer id;
|
private Integer type;
|
|
private String description;
|
private Integer uploadUserId;
|
private Integer applyUserId;
|
private Date createTime;
|
private Integer status;
|
private Integer linkId;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public Integer getUploadUserId() {
|
return uploadUserId;
|
}
|
|
public void setUploadUserId(Integer uploadUserId) {
|
this.uploadUserId = uploadUserId;
|
}
|
|
public Integer getApplyUserId() {
|
return applyUserId;
|
}
|
|
public void setApplyUserId(Integer applyUserId) {
|
this.applyUserId = applyUserId;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
public Integer getLinkId() {
|
return linkId;
|
}
|
|
public void setLinkId(Integer linkId) {
|
this.linkId = linkId;
|
}
|
}
|