fei.wang
10 天以前 e15f561a1f9eddfde503d59baf45a860b131928e
src/main/java/com/flow/mapper/DuanxinlogMapper.java
对比新文件
@@ -0,0 +1,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);
}