|
@@ -40,16 +40,16 @@ public class ElecfeeAdd 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;
|
|
|
/**备注*/
|
|
@@ -71,15 +71,15 @@ public class ElecfeeAdd implements Serializable {
|
|
|
@ApiModelProperty(value = "电价(元/kw)")
|
|
|
private Double price;
|
|
|
/**开始时间*/
|
|
|
- @Excel(name = "开始时间", width = 15, format = "yyyy-MM-dd")
|
|
|
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
|
|
- @DateTimeFormat(pattern="yyyy-MM-dd")
|
|
|
+ @Excel(name = "开始时间", width = 15, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
@ApiModelProperty(value = "开始时间")
|
|
|
private Date begintime;
|
|
|
/**结束时间*/
|
|
|
- @Excel(name = "结束时间", width = 15, format = "yyyy-MM-dd")
|
|
|
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
|
|
- @DateTimeFormat(pattern="yyyy-MM-dd")
|
|
|
+ @Excel(name = "结束时间", width = 15, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
@ApiModelProperty(value = "结束时间")
|
|
|
private Date endtime;
|
|
|
}
|