zhitong.yu
2024-03-21 6beef2ce75f15a8b3d4394b83da62071c686eb3d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.hxzk.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.github.pagehelper.PageInfo;
import com.hxzk.pojo.Init;
import com.hxzk.pojo.TbAchor;
import com.hxzk.pojo.TbDaohang;
 
import java.util.List;
 
public interface TbDaoHangService extends IService<TbDaohang> {
 
    public Init findDaoHangAll();
 
    PageInfo<TbDaohang> findAll(Integer page, Integer limit);
 
    void UpDaoHang(TbDaohang daohang);
 
    TbDaohang findOne(Integer id);
 
 
    void UpDaoHangIshow(String parents);
 
}