#
野心家
2024-10-22 926261e9388473ab2e09645ba6a8ada7469f10aa
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);
 
}