From 4beb38a8315a339ac4323f657fce9a5ec957ad92 Mon Sep 17 00:00:00 2001 From: wen <1455474577@qq.com> Date: Wed, 15 Sep 2021 16:00:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4pojo=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../xhpc/charging/station/pojo/XhpcImg.java | 79 ------------------- 1 file changed, 79 deletions(-) delete mode 100644 xhpc-modules/xhpc-charging-station/src/main/java/com/xhpc/charging/station/pojo/XhpcImg.java 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 deleted file mode 100644 index 7fae1b75..00000000 --- a/xhpc-modules/xhpc-charging-station/src/main/java/com/xhpc/charging/station/pojo/XhpcImg.java +++ /dev/null @@ -1,79 +0,0 @@ -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; - } -}