|
@@ -40,16 +40,16 @@ public class EnergyItem implements Serializable {
|
|
|
@ApiModelProperty(value = "创建者")
|
|
|
private String createBy;
|
|
|
/**创建时间*/
|
|
|
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
|
|
- @DateTimeFormat(pattern="yyyy-MM-dd")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
@ApiModelProperty(value = "创建时间")
|
|
|
private Date createTime;
|
|
|
/**更新者*/
|
|
|
@ApiModelProperty(value = "更新者")
|
|
|
private String updateBy;
|
|
|
/**更新时间*/
|
|
|
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
|
|
- @DateTimeFormat(pattern="yyyy-MM-dd")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
@ApiModelProperty(value = "更新时间")
|
|
|
private Date updateTime;
|
|
|
/**备注*/
|
|
@@ -63,5 +63,6 @@ public class EnergyItem implements Serializable {
|
|
|
/**能源分类ID*/
|
|
|
@Excel(name = "能源分类ID", width = 15)
|
|
|
@ApiModelProperty(value = "能源分类ID")
|
|
|
+ @Dict(dictTable ="base_energy_type",dicText = "name",dicCode = "id")
|
|
|
private String energytypeid;
|
|
|
}
|