package com.rzyc.model; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import java.util.Date; /** *
* 文书模板 *
* * @author * @since 2022-08-05 */ @TableName("sys_documenttemp") @ApiModel(value="SysDocumenttemp对象", description="文书模板") public class SysDocumenttemp implements Serializable { private static final long serialVersionUID = 1L; @ApiModelProperty(value = "文书id") @TableId("temp_id") private String tempId; @ApiModelProperty(value = "模板名") @TableField("temp_name") private String tempName; @ApiModelProperty(value = "下载链接") @TableField("temp_path") private String tempPath; @ApiModelProperty(value = "排序") @TableField("sort_id") private Integer sortId; @ApiModelProperty(value = "创建人") @TableField("create_by") private String createBy; @ApiModelProperty(value = "创建时间") @TableField("create_time") private Date createTime; @ApiModelProperty(value = "修改人") @TableField("modify_by") private String modifyBy; @ApiModelProperty(value = "修改时间") @TableField("modify_time") private Date modifyTime; public String getTempId() { return tempId; } public void setTempId(String tempId) { this.tempId = tempId; } public String getTempName() { return tempName; } public void setTempName(String tempName) { this.tempName = tempName; } public String getTempPath() { return tempPath; } public void setTempPath(String tempPath) { this.tempPath = tempPath; } public Integer getSortId() { return sortId; } public void setSortId(Integer sortId) { this.sortId = sortId; } public String getCreateBy() { return createBy; } public void setCreateBy(String createBy) { this.createBy = createBy; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public String getModifyBy() { return modifyBy; } public void setModifyBy(String modifyBy) { this.modifyBy = modifyBy; } public Date getModifyTime() { return modifyTime; } public void setModifyTime(Date modifyTime) { this.modifyTime = modifyTime; } @Override public String toString() { return "SysDocumenttemp{" + "tempId=" + tempId + ", tempName=" + tempName + ", tempPath=" + tempPath + ", sortId=" + sortId + ", createBy=" + createBy + ", createTime=" + createTime + ", modifyBy=" + modifyBy + ", modifyTime=" + modifyTime + "}"; } }