#
Junjie
3 天以前 536a49fb5466ebf684f0589ef7d9828ebd426202
1
2
3
4
5
6
7
8
9
10
package com.zy.asrs.service;
 
import com.zy.asrs.entity.BasLiftOpt;
import com.baomidou.mybatisplus.service.IService;
 
public interface BasLiftOptService extends IService<BasLiftOpt> {
 
    BasLiftOpt selectByDeviceWrk(String deviceWrk, Integer liftNo);
 
}