This commit is contained in:
van
2026-04-01 17:12:47 +08:00
parent 75d7c8e6de
commit 2fb9777342
10 changed files with 116 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
package com.ruoyi.jarvis.domain.dto;
/**
* 企微联调/测试数据清理选项(默认全选)
*/
public class WeComTestDataCleanRequest {
private Boolean clearTraceTable = true;
private Boolean clearWecomSessions = true;
private Boolean clearAdhocQueue = true;
public Boolean getClearTraceTable() {
return clearTraceTable;
}
public void setClearTraceTable(Boolean clearTraceTable) {
this.clearTraceTable = clearTraceTable;
}
public Boolean getClearWecomSessions() {
return clearWecomSessions;
}
public void setClearWecomSessions(Boolean clearWecomSessions) {
this.clearWecomSessions = clearWecomSessions;
}
public Boolean getClearAdhocQueue() {
return clearAdhocQueue;
}
public void setClearAdhocQueue(Boolean clearAdhocQueue) {
this.clearAdhocQueue = clearAdhocQueue;
}
}