类 HistoryController
- java.lang.Object
-
- net.risesoft.controller.HistoryController
-
@RestController @RequestMapping("/history") public class HistoryController extends Object
-
-
构造器概要
构造器 构造器 说明 HistoryController()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 net.risesoft.pojo.Y9Result<String>getEntityChanges(String entity, Optional<Object> id, Optional<String> author)net.risesoft.pojo.Y9Result<List<Object>>getEntityShadows(String entity, Optional<Object> id, Optional<String> author)net.risesoft.pojo.Y9Result<List<Map<String,Object>>>getEntityShadowsRows(String entity, Optional<String> id, Optional<String> author)net.risesoft.pojo.Y9Result<List<org.javers.core.metamodel.object.CdoSnapshot>>getEntitySnapshots(String entity, Optional<Object> id, Optional<String> author)net.risesoft.pojo.Y9Result<Set<String>>getShadowTitles(String entity, Optional<Object> id, Optional<String> author)
-
-
-
方法详细资料
-
getEntityChanges
@RequestMapping(value="/changes", produces="text/plain") public net.risesoft.pojo.Y9Result<String> getEntityChanges(@RequestParam String entity, @RequestParam Optional<Object> id, @RequestParam Optional<String> author)
-
getEntityShadows
@RequestMapping("/shadows") public net.risesoft.pojo.Y9Result<List<Object>> getEntityShadows(@RequestParam String entity, @RequestParam Optional<Object> id, @RequestParam Optional<String> author)
-
getEntityShadowsRows
@RequestMapping("/getShadowRows") public net.risesoft.pojo.Y9Result<List<Map<String,Object>>> getEntityShadowsRows(@RequestParam String entity, @RequestParam Optional<String> id, @RequestParam Optional<String> author) throws ClassNotFoundException
-
getEntitySnapshots
@RequestMapping("/snapshots") public net.risesoft.pojo.Y9Result<List<org.javers.core.metamodel.object.CdoSnapshot>> getEntitySnapshots(@RequestParam String entity, @RequestParam Optional<Object> id, @RequestParam Optional<String> author)
-
-