5 changed files with 63 additions and 6 deletions
@ -0,0 +1,57 @@ |
|||
package com.easy.admin.modules.huzhou.entity; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonFormat; |
|||
import org.springframework.format.annotation.DateTimeFormat; |
|||
|
|||
import java.util.Date; |
|||
|
|||
public class InformationMaterials { |
|||
|
|||
private static final long serialVersionUID = -50005828024123796L; |
|||
/** |
|||
* 期刊名称 |
|||
*/ |
|||
private String name; |
|||
/** |
|||
* 文件类型 |
|||
*/ |
|||
private String type; |
|||
/** |
|||
|
|||
* 发布日期 |
|||
*/ |
|||
@JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd") |
|||
// @JSONField(format="yyyy-MM-dd")
|
|||
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|||
private Date publishTime; |
|||
/** |
|||
|
|||
* id |
|||
*/ |
|||
private String id; |
|||
/** |
|||
* 文件名称 |
|||
*/ |
|||
private String documentName; |
|||
/** |
|||
* 文件类型 |
|||
*/ |
|||
private String documentType; |
|||
/** |
|||
* 文件位置 |
|||
*/ |
|||
private String documentPath; |
|||
/** |
|||
* 文件尺寸 |
|||
*/ |
|||
private Long size; |
|||
/** |
|||
* 文件状态 |
|||
*/ |
|||
private String status; |
|||
|
|||
/** |
|||
* 责任单位 |
|||
*/ |
|||
private String dutyWorkplace; |
|||
} |
Loading…
Reference in new issue