|
@@ -44,29 +44,29 @@ public class UserVip extends BaseBusinessEntity{
|
|
|
private String userName;
|
|
|
|
|
|
/** 科目一到时时间 */
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
- @Excel(name = "科目一到时时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @Excel(name = "科目一到时时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
@TableField("subject1")
|
|
|
@ApiModelProperty(value = "科目一到时时间")
|
|
|
private Date subject1;
|
|
|
|
|
|
/** 科目二到时时间 */
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
- @Excel(name = "科目二到时时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @Excel(name = "科目二到时时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
@TableField("subject2")
|
|
|
@ApiModelProperty(value = "科目二到时时间")
|
|
|
private Date subject2;
|
|
|
|
|
|
/** 科目三到期时间 */
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
- @Excel(name = "科目三到期时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @Excel(name = "科目三到期时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
@TableField("subject3")
|
|
|
@ApiModelProperty(value = "科目三到期时间")
|
|
|
private Date subject3;
|
|
|
|
|
|
/** 科目四到时时间 */
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
- @Excel(name = "科目四到时时间", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @Excel(name = "科目四到时时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
@TableField("subject4")
|
|
|
@ApiModelProperty(value = "科目四到时时间")
|
|
|
private Date subject4;
|