zhang
15 小时以前 7da7d2a6f02b8b8dd63130c4c62f171ddf860c47
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);
 
}