2
0

fix: 上网记录添加搜索

This commit is contained in:
caiyuchao
2025-03-06 18:14:20 +08:00
parent 9230988009
commit 22fd0ccd29

View File

@@ -0,0 +1,20 @@
package org.wfc.user.domain.bo;
import lombok.Data;
/**
* @description: cdr历史bo
* @author: cyc
* @since: 2025-01-03
*/
@Data
public class UUCdrHistoryUserBo {
private Long userId;
private String userName;
private String clientName;
private String clientMac;
private Long startTimeS;
private Long startTimeE;
private Long endTimeS;
private Long endTimeE;
}