111
fei.wang
2025-04-18 a6686570ac48648e2bf2ec93d27272a4473cac08
1
2
3
4
5
6
7
8
9
10
11
package com.hxzkappboot.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.hxzkappboot.pojo.TbUpapp;
 
import java.text.ParseException;
 
public interface TbUpappService extends IService<TbUpapp> {
    TbUpapp findTbUpapp(String name) throws ParseException;
 
}