对比新文件 |
| | |
| | | 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; |
| | | } |
| | | } |