FormDataTemplateDraftVo.java 1.57 KB
package com.hotent.vo;

import java.time.LocalDateTime;


/**
* 数据报表草稿数据
* <pre>
* 描述:数据报表草稿数据 实体对象
* 构建组:x7
* 作者:pangq
* 邮箱:pangq@jee-soft.cn
* 日期:2020-06-13 13:45:06
* 版权:广州宏天软件股份有限公司
* </pre>
*/
public class FormDataTemplateDraftVo {

   private static final long serialVersionUID = 1L;
    /** 主键*/
   protected String id;
    /** 标题 */
   protected String title;
    /** 数据报表别名*/
   protected String tempAlias;
    /** 报表数据json */
   protected String dataJson;
    /** 创建时间 */
    private LocalDateTime createTime;
    /** 创建人*/
    private String createBy;


    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getTempAlias() {
        return tempAlias;
    }

    public void setTempAlias(String tempAlias) {
        this.tempAlias = tempAlias;
    }

    public String getDataJson() {
        return dataJson;
    }

    public void setDataJson(String dataJson) {
        this.dataJson = dataJson;
    }

    public LocalDateTime getCreateTime() {
        return createTime;
    }

    public void setCreateTime(LocalDateTime createTime) {
        this.createTime = createTime;
    }

    public String getCreateBy() {
        return createBy;
    }

    public void setCreateBy(String createBy) {
        this.createBy = createBy;
    }


}