提交了pojo中的实体类

This commit is contained in:
wen 2021-09-15 15:56:01 +08:00
parent 53c1af51d2
commit 4c8fff4c41

View File

@ -0,0 +1,79 @@
package com.xhpc.charging.station.pojo;
import com.xhpc.common.core.web.domain.BaseEntity;
/**
* @author
* @description 上传图片 xhpc_img
* @date 2021-07-22
*/
public class XhpcImg extends BaseEntity {
/**
* 上传id
*/
private Long imgId;
/**
* 路径
*/
private String url;
/**
* 状态0正常 1停用
*/
private Integer status;
/**
* 删除标志0代表存在 2代表删除
*/
private Integer delFlag;
/**
* 生成的图片所对应的终端的终端id
*/
private int terminalId;
public int getTerminalId() {
return terminalId;
}
public void setTerminalId(int terminalId) {
this.terminalId = terminalId;
}
public Long getImgId() {
return imgId;
}
public void setImgId(Long imgId) {
this.imgId = imgId;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Integer getDelFlag() {
return delFlag;
}
public void setDelFlag(Integer delFlag) {
this.delFlag = delFlag;
}
}