#
Junjie
20 小时以前 caf3bdd9bbb629c8bc6f1a19b3ccdf441bf7650c
1
2
3
4
5
6
7
8
9
10
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.asrs.entity.WrkMastLog;
 
public interface WrkMastLogService extends IService<WrkMastLog> {
 
    boolean save(Integer wrkNo);
 
}