#
vincentlu
2026-03-17 e2488e161c8d832c6f0ddbfa92e7f3f23af582c3
1
2
3
4
5
6
7
8
9
10
package com.zy.acs.manager.manager.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.acs.manager.manager.entity.IntegrationRecord;
 
public interface IntegrationRecordService extends IService<IntegrationRecord> {
 
    Boolean syncRecord(IntegrationRecord record);
 
}