This commit is contained in:
BLRTTX 2024-12-20 18:39:23 +08:00
parent 556168f0f6
commit 54ae1266f7
2 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,7 @@ public class BaseEntity implements Serializable {
@Schema(description = "逻辑删除") @Schema(description = "逻辑删除")
@TableField("is_deleted") @TableField("is_deleted")
@TableLogic(value = "0", delval = "1") @TableLogic
@JsonIgnore @JsonIgnore
private Byte isDeleted; private Byte isDeleted;

View File

@ -97,6 +97,7 @@ public class AppointmentInfoServiceImpl extends ServiceImpl<AppointmentInfoMappe
userAppointment.setPhone(appointmentSetOrderVo.getPhone()); userAppointment.setPhone(appointmentSetOrderVo.getPhone());
userAppointment.setFees(appointmentSetOrderVo.getFees()); userAppointment.setFees(appointmentSetOrderVo.getFees());
userAppointment.setMemo(appointmentSetOrderVo.getMemo()); userAppointment.setMemo(appointmentSetOrderVo.getMemo());
userAppointment.setIsDeleted((byte) 0);
userAppointmentMapper.insertOrUpdate(userAppointment); userAppointmentMapper.insertOrUpdate(userAppointment);
} }