From 2fcd97552d16718cc7997629fd637a73a5a4483f Mon Sep 17 00:00:00 2001 From: 郑永安 <zyazyz250@sina.com> Date: 星期一, 19 六月 2023 14:44:19 +0800 Subject: [PATCH] 删除 --- src/main/java/com/gk/firework/Domain/Vo/StandardTemplate1Vo.java | 86 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 86 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gk/firework/Domain/Vo/StandardTemplate1Vo.java b/src/main/java/com/gk/firework/Domain/Vo/StandardTemplate1Vo.java new file mode 100644 index 0000000..3595f05 --- /dev/null +++ b/src/main/java/com/gk/firework/Domain/Vo/StandardTemplate1Vo.java @@ -0,0 +1,86 @@ +package com.gk.firework.Domain.Vo; + +import org.springframework.format.annotation.DateTimeFormat; +import org.springframework.web.multipart.MultipartFile; + +import java.util.Date; + +public class StandardTemplate1Vo { + + private Long id; + + /** 菜单 menu **/ + private String menu; + + /** 制定时间 settime **/ + @DateTimeFormat(pattern="yyyy-MM-dd") + private Date settime; + + /** 名称 name **/ + private String name; + + /** 类型 type **/ + private Integer type; + + /** 内容 content **/ + private String content; + + private MultipartFile file; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getMenu() { + return menu; + } + + public void setMenu(String menu) { + this.menu = menu; + } + + + public Date getSettime() { + return settime; + } + + public void setSettime(Date settime) { + this.settime = settime; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public Integer getType() { + return type; + } + + public void setType(Integer type) { + this.type = type; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content; + } + + public MultipartFile getFile() { + return file; + } + + public void setFile(MultipartFile file) { + this.file = file; + } +} -- Gitblit v1.9.2