fei.wang
2024-03-21 ab64b09ce3020b376af1e6ee0326ea71330d34ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.flow.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.flow.pojo.Duanxinlog;
import org.apache.ibatis.annotations.Select;
 
import java.util.List;
 
public interface DuanxinlogMapper  extends BaseMapper<Duanxinlog>  {
 
    @Select({"select * from tb_duanxinlog where none = 0 ORDER BY dispatchDate DESC"})
    List<Duanxinlog> FindDuanxinlog();
 
 
    @Select({"SELECT dispatchDate FROM tb_duanxinlog where identification = #{Zong} ORDER BY dispatchDate DESC LIMIT 0 , 1"})
    String userdate(String var1);
}