jyy
2021-01-26 ab2879bbcb846256cc182198b9c04e50fbc276c1
zq-erp/src/main/java/com/matrix/system/hive/bean/SysProjUse.java
@@ -2,7 +2,9 @@
import com.fasterxml.jackson.annotation.JsonFormat;
import com.matrix.core.anotations.Extend;
import com.matrix.core.pojo.EntityDTO;
import com.matrix.core.tools.DateUtil;
import com.matrix.system.common.bean.EntityDTOExt;
import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable;
@@ -13,7 +15,7 @@
/**
 * @date 2016-07-03 20:53
 */
public class SysProjUse implements Serializable {
public class SysProjUse extends EntityDTO {
    private static final long serialVersionUID = 1L;
@@ -47,6 +49,9 @@
    @JsonFormat(pattern = DateUtil.DATE_FORMAT_DD, timezone = "GMT+8")
    @DateTimeFormat(pattern = DateUtil.DATE_FORMAT_DD)
    private Date failTime;
    private Date targetFailTime;
    /**
     * 套餐id
     */
@@ -127,6 +132,36 @@
    private String img;
    private String queryKey;
    @Extend
    private String updateRemark;
    public String getUpdateRemark() {
        return updateRemark;
    }
    public void setUpdateRemark(String updateRemark) {
        this.updateRemark = updateRemark;
    }
    public Date getTargetFailTime() {
        return targetFailTime;
    }
    public void setTargetFailTime(Date targetFailTime) {
        this.targetFailTime = targetFailTime;
    }
    public String getQueryKey() {
        return queryKey;
    }
    public void setQueryKey(String queryKey) {
        this.queryKey = queryKey;
    }
    public Integer getTimeLength() {
        return timeLength;
    }