You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.1 KiB
Java
33 lines
1.1 KiB
Java
//
|
|
// Source code recreated from a .class file by IntelliJ IDEA
|
|
// (powered by FernFlower decompiler)
|
|
//
|
|
|
|
package com.docus.bgts.mapper.dbmysql;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.docus.bgts.entity.AfCollectAdd;
|
|
import com.docus.bgts.entity.MzSync;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import org.apache.ibatis.annotations.Select;
|
|
|
|
public interface AfCollectAddMapper extends BaseMapper<AfCollectAdd> {
|
|
Date getTimeByAdd(Integer classIfy);
|
|
|
|
List<String> listJzh(@Param("pageNumber") int pageNumber, @Param("pageSize") Integer pageSize);
|
|
|
|
Map<String, Date> selectDate(@Param("jzh") String jzh);
|
|
|
|
List<Map> integrality(@Param("mzSyncs") List<MzSync> mzSyncs);
|
|
|
|
@Select({"${sqlStr}"})
|
|
void dynamicSql(@Param("sqlStr") String sql);
|
|
|
|
void updateTBasic(@Param("result") String result, @Param("jzh") String jzh);
|
|
|
|
List<String> listJzhAndAdd(@Param("front") int front, @Param("later") int later, @Param("startDate") String startDate, @Param("endDate") String endDate);
|
|
}
|