#
luxiaotao1123
6 天以前 ff952db837b9193a58ddf42396d8aff34d5b34ff
1
2
3
4
5
6
7
8
9
10
package com.zy.acs.manager.manager.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.acs.manager.manager.entity.AgvSts;
 
public interface AgvStsService extends IService<AgvSts> {
 
    AgvSts selectByUuid(String uuid);
 
}