#
luxiaotao1123
2024-01-31 93268fc1c008c232b80df5cc80af370570a0d2fe
1
2
3
4
5
6
7
8
9
10
package com.zy.asrs.wcs.sys.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.asrs.wcs.sys.entity.OperationRecord;
 
public interface OperationRecordService extends IService<OperationRecord> {
 
    void saveAsync(OperationRecord operationRecord);
 
}