39 changed files with 214 additions and 73 deletions
@ -0,0 +1,21 @@ |
|||
package net.lab1024.sa.admin.module.letter.domain.form; |
|||
|
|||
import io.swagger.v3.oas.annotations.media.Schema; |
|||
import lombok.Data; |
|||
import lombok.EqualsAndHashCode; |
|||
|
|||
/** |
|||
* 承诺书签订表 |
|||
* |
|||
* @Author wzh |
|||
* @Date 2025-12-22 17:43:06 |
|||
* @Copyright 1 |
|||
*/ |
|||
|
|||
@Data |
|||
@EqualsAndHashCode(callSuper = false) |
|||
public class LetterAddForm { |
|||
|
|||
@Schema(description = "用户id") |
|||
private Long userId; |
|||
} |
|||
@ -0,0 +1,21 @@ |
|||
package net.lab1024.sa.admin.module.letter.domain.form; |
|||
|
|||
import io.swagger.v3.oas.annotations.media.Schema; |
|||
import lombok.Data; |
|||
import lombok.EqualsAndHashCode; |
|||
import net.lab1024.sa.base.common.domain.PageParam; |
|||
|
|||
/** |
|||
* 承诺书签订表 |
|||
* |
|||
* @Author wzh |
|||
* @Date 2025-12-22 17:43:06 |
|||
* @Copyright 1 |
|||
*/ |
|||
|
|||
@Data |
|||
@EqualsAndHashCode(callSuper = false) |
|||
public class LetterQueryFormNoPage { |
|||
@Schema(description = "用户id") |
|||
private Long userId; |
|||
} |
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,18 +0,0 @@ |
|||
#相关的包 |
|||
modulelist=com.baomidou.mybatisplus.extension.p6spy.MybatisPlusLogFactory,com.p6spy.engine.outage.P6OutageFactory |
|||
# 日志格式 |
|||
logMessageFormat=com.baomidou.mybatisplus.extension.p6spy.P6SpyLogger |
|||
#日志输出到控制台 |
|||
appender=com.p6spy.engine.spy.appender.StdoutLogger |
|||
# 设置 p6spy driver 代理 |
|||
deregisterdrivers=true |
|||
# 取消JDBC URL前缀 |
|||
useprefix=true |
|||
# 配置记录 Log 例外,可去掉的结果集有error,info,batch,debug,statement,commit,rollback,result,resultset. |
|||
excludecategories=info,debug,result,commit,resultset |
|||
# 日期格式 |
|||
dateformat=yyyy-MM-dd HH:mm:ss |
|||
# 开启慢sql |
|||
outagedetection=true |
|||
# 慢SQL记录标准(单位秒) |
|||
outagedetectioninterval=2 |
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue