|
|
@@ -463,7 +463,7 @@ namespace CallCenterApi.Interface.Controllers.weixin
|
|
463
|
463
|
}
|
|
464
|
464
|
|
|
465
|
465
|
/// <summary>
|
|
466
|
|
- /// 获取交办单位列表
|
|
|
466
|
+ /// 获取乡镇列表
|
|
467
|
467
|
/// </summary>
|
|
468
|
468
|
/// <returns></returns>
|
|
469
|
469
|
[WechatActionFilter]
|
|
|
@@ -473,7 +473,18 @@ namespace CallCenterApi.Interface.Controllers.weixin
|
|
473
|
473
|
var dt = DbHelperSQL.Query(sql).Tables[0];
|
|
474
|
474
|
return Success("列表加载成功", dt);
|
|
475
|
475
|
}
|
|
476
|
|
-
|
|
|
476
|
+
|
|
|
477
|
+ /// <summary>
|
|
|
478
|
+ /// 获取交办单位列表
|
|
|
479
|
+ /// </summary>
|
|
|
480
|
+ /// <returns></returns>
|
|
|
481
|
+ [WechatActionFilter]
|
|
|
482
|
+ public ActionResult GetZBDWList()
|
|
|
483
|
+ {
|
|
|
484
|
+ string sql = "select * from T_Sys_DictionaryValue where F_DictionaryFlag='ZBDW' and F_State=1 ";
|
|
|
485
|
+ var dt = DbHelperSQL.Query(sql).Tables[0];
|
|
|
486
|
+ return Success("列表加载成功", dt);
|
|
|
487
|
+ }
|
|
477
|
488
|
#endregion
|
|
478
|
489
|
|
|
479
|
490
|
#region 附件和语音文件
|