#
zjj
2024-06-12 8910b1dd0a3164288c27218e9896953e9c42e8a7
1
2
3
4
5
6
7
8
9
10
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.WrkDetlLog;
 
public interface WrkDetlLogService extends IService<WrkDetlLog> {
 
    boolean save(Integer workNo);
 
}