diff --git a/ruoyi-admin/src/main/resources/templates/ems/a b/ruoyi-admin/src/main/resources/templates/ems/a new file mode 100644 index 0000000..e69de29 diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/BaseJfpgInfo.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/BaseJfpgInfo.java new file mode 100644 index 0000000..c8712bf --- /dev/null +++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/BaseJfpgInfo.java @@ -0,0 +1,174 @@ +package com.ruoyi.system.domain; + +import java.math.BigDecimal; +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.ruoyi.common.annotation.Excel; +import com.ruoyi.common.core.domain.BaseEntity; + +/** + * 尖峰平谷信息对象 base_jfpg_info + * + * @author WenJY + * @date 2021-11-30 + */ +public class BaseJfpgInfo extends BaseEntity +{ + + public BaseJfpgInfo() { + } + + public BaseJfpgInfo(Long deleteFlag) { + this.deleteFlag = deleteFlag; + } + + /** UUID */ + private String uuid; + + /** 时段名称 */ + @Excel(name = "时段名称") + private String timeframeName; + + /** 时段开始 */ + @Excel(name = "时段开始") + private String timeframeBegin; + + /** 时段结束 */ + @Excel(name = "时段结束") + private String timeframeEnd; + + /** 时段单价 */ + @Excel(name = "时段单价") + private BigDecimal timeframePrice; + + /** 是否启用 */ + @Excel(name = "是否启用") + private Long deleteFlag; + + /** 创建人 */ + @Excel(name = "创建人") + private String createdBy; + + /** 创建时间 */ + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd") + private Date createdTime; + + /** 更新人 */ + @Excel(name = "更新人") + private String updatedBy; + + /** 更新时间 */ + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @Excel(name = "更新时间", width = 30, dateFormat = "yyyy-MM-dd") + private Date updatedTime; + + public void setUuid(String uuid) + { + this.uuid = uuid; + } + + public String getUuid() + { + return uuid; + } + public void setTimeframeName(String timeframeName) + { + this.timeframeName = timeframeName; + } + + public String getTimeframeName() + { + return timeframeName; + } + public void setTimeframeBegin(String timeframeBegin) + { + this.timeframeBegin = timeframeBegin; + } + + public String getTimeframeBegin() + { + return timeframeBegin; + } + public void setTimeframeEnd(String timeframeEnd) + { + this.timeframeEnd = timeframeEnd; + } + + public String getTimeframeEnd() + { + return timeframeEnd; + } + public void setTimeframePrice(BigDecimal timeframePrice) + { + this.timeframePrice = timeframePrice; + } + + public BigDecimal getTimeframePrice() + { + return timeframePrice; + } + public void setDeleteFlag(Long deleteFlag) + { + this.deleteFlag = deleteFlag; + } + + public Long getDeleteFlag() + { + return deleteFlag; + } + public void setCreatedBy(String createdBy) + { + this.createdBy = createdBy; + } + + public String getCreatedBy() + { + return createdBy; + } + public void setCreatedTime(Date createdTime) + { + this.createdTime = createdTime; + } + + public Date getCreatedTime() + { + return createdTime; + } + public void setUpdatedBy(String updatedBy) + { + this.updatedBy = updatedBy; + } + + public String getUpdatedBy() + { + return updatedBy; + } + public void setUpdatedTime(Date updatedTime) + { + this.updatedTime = updatedTime; + } + + public Date getUpdatedTime() + { + return updatedTime; + } + + @Override + public String toString() { + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) + .append("uuid", getUuid()) + .append("timeframeName", getTimeframeName()) + .append("timeframeBegin", getTimeframeBegin()) + .append("timeframeEnd", getTimeframeEnd()) + .append("timeframePrice", getTimeframePrice()) + .append("deleteFlag", getDeleteFlag()) + .append("createdBy", getCreatedBy()) + .append("createdTime", getCreatedTime()) + .append("updatedBy", getUpdatedBy()) + .append("updatedTime", getUpdatedTime()) + .toString(); + } +}