From 51068ad328d28d3b7a011077a49d899f88e9d266 Mon Sep 17 00:00:00 2001 From: yanps Date: Thu, 7 Dec 2023 13:55:16 +0800 Subject: [PATCH] fix: produceshiftorder --- .../service/ProduceshiftorderService.java | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/acs/nladmin-system/nlsso-server/src/main/java/org/nl/acs/produceshiftorder/service/ProduceshiftorderService.java b/acs/nladmin-system/nlsso-server/src/main/java/org/nl/acs/produceshiftorder/service/ProduceshiftorderService.java index 4496fdf..62696ac 100644 --- a/acs/nladmin-system/nlsso-server/src/main/java/org/nl/acs/produceshiftorder/service/ProduceshiftorderService.java +++ b/acs/nladmin-system/nlsso-server/src/main/java/org/nl/acs/produceshiftorder/service/ProduceshiftorderService.java @@ -35,19 +35,46 @@ public interface ProduceshiftorderService extends CommonService queryAll(ProduceshiftorderQueryParam query); + /** + * 根据id查询 + * @param id + * @return + */ Produceshiftorder getById(String id); + /** + * 根据id查询 + * @param id + * @return + */ ProduceshiftorderDto findById(String id); /** * 插入一条新数据。 + * @param resources + * @return */ int insert(ProduceshiftorderDto resources); + /** + * 根据id修改 + * @param resources + * @return + */ int updateById(ProduceshiftorderDto resources); + /** + * 根据id删除 + * @param id + * @return + */ int removeById(String id); + /** + * 根据id批量删除 + * @param ids + * @return + */ int removeByIds(Set ids); /**