diff --git a/xhpc-modules/xhpc-charging-station/src/main/java/com/xhpc/charging/station/pojo/XhpcImg.java b/xhpc-modules/xhpc-charging-station/src/main/java/com/xhpc/charging/station/pojo/XhpcImg.java new file mode 100644 index 00000000..7fae1b75 --- /dev/null +++ b/xhpc-modules/xhpc-charging-station/src/main/java/com/xhpc/charging/station/pojo/XhpcImg.java @@ -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; + } +}