This commit is contained in:
2024-09-01 16:54:09 +08:00
commit a7b6b88833
498 changed files with 54225 additions and 0 deletions
@@ -0,0 +1,21 @@
package com.cym.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.cym.bean.Page;
import com.cym.model.Example;
import com.cym.utils.JpaHelper;
@Service
public class ExampleService {
@Autowired
JpaHelper jpaHelper;
public Page search(Page page) {
page = jpaHelper.findPageByQuery(page, Example.class);
return page;
}
}