This commit is contained in:
2025-08-27 20:36:28 +08:00
parent a92122cc94
commit 435cfc1c3c
5 changed files with 203 additions and 2 deletions

View File

@@ -16,6 +16,18 @@ public interface IJDOrderService {
* 按ID查询
*/
JDOrder selectJDOrderById(Long id);
/** 新增 */
int insertJDOrder(JDOrder jdOrder);
/** 更新 */
int updateJDOrder(JDOrder jdOrder);
/** 按 remark 查单(单号) */
JDOrder selectJDOrderByRemark(String remark);
/** 按地址倒序查询全部 */
java.util.List<JDOrder> selectJDOrderListByAddress(String address);
}