All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.mingsoft.mprint.entity.PrintTemplateEntity Maven / Gradle / Ivy

The newest version!
package net.mingsoft.mprint.entity;

import com.alibaba.fastjson.annotation.JSONField;
import org.springframework.format.annotation.DateTimeFormat;
import com.fasterxml.jackson.annotation.JsonFormat;
import net.mingsoft.base.entity.BaseEntity;
import java.util.Date;
/**
* 打印模板实体
* @author 暗夜
* 创建日期:2019-11-27 14:44:05
* 历史修订:
*/ public class PrintTemplateEntity extends BaseEntity { private static final long serialVersionUID = 1574837045214L; /** * 模板名称 */ private String name; /** * 模板类型 */ private String type; /** * 业务id */ private String dataId; /** * 模板内容 */ private String content; /** * 模板变量数据 */ private String variable; public String getVariable() { return variable; } public void setVariable(String variable) { this.variable = variable; } /** * 设置模板名称 */ public void setName(String name) { this.name = name; } /** * 获取模板名称 */ public String getName() { return this.name; } /** * 设置模板类型 */ public void setType(String type) { this.type = type; } /** * 获取模板类型 */ public String getType() { return this.type; } /** * 设置业务id */ public void setDataId(String dataId) { this.dataId = dataId; } /** * 获取业务id */ public String getDataId() { return this.dataId; } /** * 设置模板内容 */ public void setContent(String content) { this.content = content; } /** * 获取模板内容 */ public String getContent() { return this.content; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy