first commit

This commit is contained in:
2025-02-20 15:14:38 +08:00
commit 70e3764011
1113 changed files with 107789 additions and 0 deletions
@@ -0,0 +1,26 @@
package lingtao.net.dao;
import java.util.List;
import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import lingtao.net.bean.Finance;
@Mapper
public interface Finance2Mapper {
List<Finance> getFinance(Finance finance);
void insertForeach(List<Finance> list);
// 查询数据是否存在,避免重复上传
String checkAccountNumber(@Param("orderNumber") String orderNumber);
List<String> getAllFilename(@Param("creator") String creator);
@Delete("delete from tbl_sys_finance where filename = #{filename} and creator = #{realname}")
void deleteDataByFilename(@Param("filename") String filename, @Param("realname") String realname);
}