#
luxiaotao1123
2024-01-31 490037e66e46160021e2ee9d172206a6d77be011
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);
 
}