#
luxiaotao1123
2024-02-15 3b652633ccb6d3dbcdf126f3b0649b7b0cd8a61c
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);
 
}