#
luxiaotao1123
2024-10-12 28647ecb12f0dc6558c0c299d99e9a450d97fa22
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.StaSts;
 
public interface StaStsService extends IService<StaSts> {
 
    StaSts selectByUuid(String uuid);
 
}