main
HuangHai 3 months ago
parent f88f958eee
commit 37518236bd

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

Loading…
Cancel
Save