#
luxiaotao1123
2024-09-20 27c410ed7bbf44d6031c8cc62095a64a1f6bdad2
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.LocSts;
 
public interface LocStsService extends IService<LocSts> {
 
    LocSts selectByUuid(String uuid);
 
}