切换测试数据库

This commit is contained in:
2025-09-12 14:08:04 +08:00
parent 1a4942d7f7
commit d3c2b297f3
4 changed files with 24 additions and 3 deletions

View File

@@ -72,6 +72,10 @@ public class ShopDealerApply implements Serializable {
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private LocalDateTime contractTime;
@Schema(description = "到期时间")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private LocalDateTime expirationTime;
@Schema(description = "驳回原因")
private String rejectReason;

View File

@@ -22,6 +22,9 @@
<if test="param.mobile != null">
AND a.mobile LIKE CONCAT('%', #{param.mobile}, '%')
</if>
<if test="param.dealerName != null">
AND a.dealer_name LIKE CONCAT('%', #{param.dealerName}, '%')
</if>
<if test="param.refereeId != null">
AND a.referee_id = #{param.refereeId}
</if>
@@ -37,6 +40,9 @@
<if test="param.auditTime != null">
AND a.audit_time = #{param.auditTime}
</if>
<if test="param.expirationTime != null">
AND a.expiration_time = #{param.expirationTime}
</if>
<if test="param.rejectReason != null">
AND a.reject_reason LIKE CONCAT('%', #{param.rejectReason}, '%')
</if>

View File

@@ -52,6 +52,10 @@ public class ShopDealerApplyParam extends BaseParam {
@QueryField(type = QueryType.EQ)
private String applyTime;
@Schema(description = "到期时间")
@QueryField(type = QueryType.EQ)
private String expirationTime;
@Schema(description = "审核状态 (10待审核 20审核通过 30驳回)")
@QueryField(type = QueryType.EQ)
private Integer applyStatus;
@@ -63,4 +67,8 @@ public class ShopDealerApplyParam extends BaseParam {
@Schema(description = "驳回原因")
private String rejectReason;
@Schema(description = "分销商名称")
@QueryField(type = QueryType.EQ)
private String dealerName;
}