perryhsu
2020-10-17 a543f4de1c91ef6f43aace92975c6cf28de23618
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.fgkj.mapper.impl;
 
import java.util.List;
 
public interface User_ChartMapper{
 
    //添加图标
    public boolean add(Object obj);
 
   //修改图标信息
    public boolean update(Object obj) ;
   //删除图标
    public boolean del(Object obj) ;
 
   //查询所有chart_file
    public List searchAll();
 
   //根据用户id查图表
    public List serchByCondition(Object obj);
 
   //根据chart_file和列名查询图片(Chart_name放列名字)
    public List serchByInfo(Object obj);
    
}