linwe
2024-08-09 8b7258c9427882bb1798f1502eaa35184c6e374e
src/main/java/org/springblade/modules/place/entity/PlacePractitionerEntity.java
@@ -83,7 +83,7 @@
   /** 0:否1:是 */
   @ApiModelProperty(value = "0:否1:是", example = "")
   @TableField("is_deleted")
   @TableLogic
   @TableLogic(value = "0", delval = "1")
   private Integer isDeleted;
   /** 0:否 1:是 前科 */
@@ -118,4 +118,25 @@
   @TableField("resignation_flag")
   private Integer resignationFlag;
   /** 审核确认人用户id */
   @ApiModelProperty(value = "审核确认人用户id", example = "")
   @TableField("confirm_user_id")
   private Long confirmUserId;
   /** 确认标记 1:待审核  2:审核通过  3:审核不通过 4:待完善 */
   @ApiModelProperty(value = "确认标记 1:待审核  2:审核通过  3:审核不通过 4:待完善", example = "")
   @TableField("confirm_flag")
   private Integer confirmFlag;
   /** 审核确认时间 */
   @ApiModelProperty(value = "审核确认时间", example = "")
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
   @TableField("confirm_time")
   private Date confirmTime;
   /** 审核意见 */
   @ApiModelProperty(value = "审核意见", example = "")
   @TableField("confirm_notion")
   private String confirmNotion;
}