|
|
|
@ -576,11 +576,13 @@ public class DataEaseController extends Controller {
|
|
|
|
|
*/
|
|
|
|
|
@Before({GET.class})
|
|
|
|
|
@IsLoginInterface({})
|
|
|
|
|
public void getDataSetByProvince() {
|
|
|
|
|
public void getDataSetByProvince(int identity_id) {
|
|
|
|
|
if (identity_id == 0) identity_id = 2;
|
|
|
|
|
List<Record> list = dm.getDataSetByIdentityId(2, null);
|
|
|
|
|
renderJson(CommonUtil.renderJsonForLayUI(list));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 省级管理员,帮助市州管理员填报数据,需要获取指定数据集的数据
|
|
|
|
|
*
|
|
|
|
|