|
|
|
@ -31,7 +31,7 @@ public class BaseController extends Controller {
|
|
|
|
|
*/
|
|
|
|
|
@Before({GET.class})
|
|
|
|
|
public void getCurrentPersonInfo() {
|
|
|
|
|
Map map = new HashMap<>();
|
|
|
|
|
Map<String, Object> map = new HashMap<>();
|
|
|
|
|
map.put("identity_id", getCookie("identity_id"));
|
|
|
|
|
map.put("person_id", getCookie("person_id"));
|
|
|
|
|
map.put("bureau_id", getCookie("bureau_id"));
|
|
|
|
@ -83,7 +83,7 @@ public class BaseController extends Controller {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 作者:黄海
|
|
|
|
|
* 时间: 2018-11-22
|
|
|
|
|
* 时间:2018-11-22
|
|
|
|
|
*/
|
|
|
|
|
@Before({GET.class})
|
|
|
|
|
@IsNumericInterface({"parent_id", "type_id"})
|
|
|
|
@ -339,7 +339,6 @@ public class BaseController extends Controller {
|
|
|
|
|
* 作者:黄海
|
|
|
|
|
* 时间:2020-11-03
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public void getZhuanYeList(int batch_year) {
|
|
|
|
|
//声明一个全的,大的数据集
|
|
|
|
@ -360,7 +359,6 @@ public class BaseController extends Controller {
|
|
|
|
|
* 作者:黄海
|
|
|
|
|
* 时间:2019-10-15
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public void getTermList(String action_asc, int addOne) {
|
|
|
|
|
List<Record> list = model.getTermList(action_asc, addOne);
|
|
|
|
@ -372,7 +370,6 @@ public class BaseController extends Controller {
|
|
|
|
|
* 作者:黄海
|
|
|
|
|
* 时间:2021-09-27
|
|
|
|
|
*
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public void getTermListByYear(int batch_year) {
|
|
|
|
|
List<Record> list = model.getTermListByYear(batch_year);
|
|
|
|
@ -385,7 +382,6 @@ public class BaseController extends Controller {
|
|
|
|
|
* 时间:2019-10-14
|
|
|
|
|
*
|
|
|
|
|
* @param xq_id
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public void getXiaoLiMemo(int xq_id) {
|
|
|
|
|
Record record = model.getXiaoLiMemo(xq_id);
|
|
|
|
|