From 4c8fff4c418ff5d11f8c2c68bb983c86e6c8b9f3 Mon Sep 17 00:00:00 2001 From: wen <1455474577@qq.com> Date: Wed, 15 Sep 2021 15:56:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BA=86pojo=E4=B8=AD?= =?UTF-8?q?=E7=9A=84=E5=AE=9E=E4=BD=93=E7=B1=BB?= 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 insertions(+) create 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 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; + } +}