zhitong.yu
2024-12-27 8abbee975353926e51a426a75c67119337fbdae4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.hxzk.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.github.pagehelper.PageInfo;
import com.hxzk.pojo.TbHksxt;
import com.hxzk.pojo.TbShipin;
 
import java.util.List;
 
public interface HkSxtService extends IService<TbHksxt> {
 
    PageInfo<TbHksxt> findAll(Integer page, Integer limit);
 
    void UpJianKongs(TbHksxt hksxt);
 
    List<TbHksxt> findSxt();
 
    TbHksxt FindUserNameSxt(TbHksxt tbHksxt);
 
    List<TbHksxt> FindHaiKang();
 
    Integer addHkSxt(TbHksxt hksxt);
    Integer upHkSxt(TbHksxt hksxt);
    Integer deHkSxt(String name);
 
 
}