whycxzp
2023-02-28 cc31a7815b65b1956228f495864896548e1b9d09
src/main/java/com/whyc/service/ProductLockLogService.java
@@ -21,7 +21,7 @@
    public List<ProductLockLog> getListByParentCodeAndCustomCode(String parentCode, String customCode) {
        QueryWrapper<ProductLockLog> query = Wrappers.query();
        query.eq("parent_code",parentCode).eq("custom_code",customCode);
        query.eq("parent_code",parentCode).eq("custom_code",customCode).orderByDesc("id");
        return mapper.selectList(query);
    }
}