Commit f4aa5ed0 authored by lisong's avatar lisong

初始化实体

parent 79a9290b
...@@ -31,16 +31,16 @@ public class TzsBaseIndividualityDto extends BaseDto { ...@@ -31,16 +31,16 @@ public class TzsBaseIndividualityDto extends BaseDto {
private String realName; private String realName;
@ApiModelProperty(value = "有效期开始") @ApiModelProperty(value = "有效期开始")
private LocalDateTime expirationDateStart; private Date expirationDateStart;
@ApiModelProperty(value = "有效期结束") @ApiModelProperty(value = "有效期结束")
private LocalDateTime expirationDateEnd; private Date expirationDateEnd;
@ApiModelProperty(value = "有效期类型") @ApiModelProperty(value = "有效期类型")
private String expirationDateType; private String expirationDateType;
@ApiModelProperty(value = "创建时间") @ApiModelProperty(value = "创建时间")
private LocalDateTime createDate; private Date createDate;
@ApiModelProperty(value = "tz_base_enterprise_info关联id") @ApiModelProperty(value = "tz_base_enterprise_info关联id")
private Long enterpriseId; private Long enterpriseId;
......
...@@ -37,7 +37,7 @@ public class TzsBaseInstitutionDto extends BaseDto { ...@@ -37,7 +37,7 @@ public class TzsBaseInstitutionDto extends BaseDto {
private String registrationAuthority; private String registrationAuthority;
@ApiModelProperty(value = "创建时间") @ApiModelProperty(value = "创建时间")
private LocalDateTime createDate; private Date createDate;
@ApiModelProperty(value = "tz_base_enterprise_info关联id") @ApiModelProperty(value = "tz_base_enterprise_info关联id")
private Long enterpriseId; private Long enterpriseId;
......
...@@ -44,13 +44,13 @@ public class TzsBaseIndividuality extends BaseEntity { ...@@ -44,13 +44,13 @@ public class TzsBaseIndividuality extends BaseEntity {
* *
*/ */
@TableField("expiration_date_start") @TableField("expiration_date_start")
private LocalDateTime expirationDateStart; private Date expirationDateStart;
/** /**
* *
*/ */
@TableField("expiration_date_end") @TableField("expiration_date_end")
private LocalDateTime expirationDateEnd; private Date expirationDateEnd;
/** /**
* *
...@@ -62,7 +62,7 @@ public class TzsBaseIndividuality extends BaseEntity { ...@@ -62,7 +62,7 @@ public class TzsBaseIndividuality extends BaseEntity {
* *
*/ */
@TableField("create_date") @TableField("create_date")
private LocalDateTime createDate; private Date createDate;
/** /**
* *
......
...@@ -56,7 +56,7 @@ public class TzsBaseInstitution extends BaseEntity { ...@@ -56,7 +56,7 @@ public class TzsBaseInstitution 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