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

@@ -17,6 +17,14 @@ public interface JDOrderMapper {
* 根据主键查询
*/
JDOrder selectJDOrderById(Long id);
int insertJDOrder(JDOrder jdOrder);
int updateJDOrder(JDOrder jdOrder);
JDOrder selectJDOrderByRemark(String remark);
List<JDOrder> selectJDOrderListByAddress(String address);
}