rain
2024-07-31 4e8892f75a0d9b76e147cccdb1f188c272aed4c5
src/main/java/com/dji/sample/patches/service/GetPatchesService.java
@@ -14,8 +14,10 @@
     * @return 返回一个包含查询结果和分页信息的PaginationData对象。
     */
    PaginationData<LotInfo> limitGet(PatchesParam param);
    void delPatches();
    int delPatches(String workspaceId);
    List<LotInfo> getLotInfosByIds(List<Integer> ids);
    void patchesPushed(String taskId, String dkbh, String workspaceId);
    int deleteOne(int id);
    /**
     * 根据条件获取照片的分页数据
     *
@@ -24,7 +26,7 @@
     * @return 返回照片的分页数据,包括分页信息和照片实体列表
     */
    PaginationData<MediaFileEntity> getPhoto(PatchesParam param,String dkbh);
    LotInfo getPatchesFromId(String patchesId);
    /**
     * 根据条件获取照片的分页数据
     *
@@ -42,5 +44,9 @@
     */
     LotInfo getLotinfo(String dkbh,String workspaceId);
    List<LotInfo>listLotinfo();
    List<LotInfo>listLotinfo(String workspaceID);
    void insertLotinfo(List<LotInfo> list);
    LotInfo getLotinfoToDb(String dkbh);
}