zwl
2026-01-13 391cbdd2309469a48d2068c0849b8140e5d5670a
1
2
3
4
5
6
7
8
9
10
package com.zy.asrs.service;
 
import com.zy.asrs.entity.WrkMastLog;
import com.baomidou.mybatisplus.service.IService;
 
public interface WrkMastLogService extends IService<WrkMastLog> {
 
    boolean save(Integer workNo);
 
}