Commit fed7ba69 authored by caotao's avatar caotao

修改数据实体及Dto类型

parent d34c4dfa
...@@ -25,7 +25,7 @@ public class JgRegistrationHistoryDto extends BaseDto { ...@@ -25,7 +25,7 @@ public class JgRegistrationHistoryDto extends BaseDto {
private String createUserId; private String createUserId;
@ApiModelProperty(value = "创建时间") @ApiModelProperty(value = "创建时间")
private LocalDateTime createDate; private Date createDate;
@ApiModelProperty(value = "使用登记编号") @ApiModelProperty(value = "使用登记编号")
private String useRegistrationCode; private String useRegistrationCode;
......
...@@ -32,7 +32,7 @@ public class JgRegistrationHistory extends BaseEntity { ...@@ -32,7 +32,7 @@ public class JgRegistrationHistory extends BaseEntity {
* 创建时间 * 创建时间
*/ */
@TableField("create_date") @TableField("create_date")
private LocalDateTime createDate; private Date createDate;
/** /**
* 使用登记编号 * 使用登记编号
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment