|
@@ -23,6 +23,7 @@ import com.xt.jygl.gkjcxx.mt.entity.MtEntity;
|
|
|
import com.xt.jygl.gkjcxx.mt.service.MtService;
|
|
|
import com.xt.jygl.gkjygl.cghzyxxgl.dcsb.entity.DcsbEntity;
|
|
|
import com.xt.jygl.gkjygl.cghzyxxgl.dcsb.service.DcsbService;
|
|
|
+import com.xt.jygl.gkjygl.gkjyr.jyrbw.service.BwService;
|
|
|
import com.xt.jygl.gkjygl.gkjyr.jyrjbxx.entity.BwEntity;
|
|
|
import com.xt.jygl.gkjygl.gkjyr.jyrjbxx.entity.GkjyrEntity;
|
|
|
import com.xtframe.sec.code.entity.CodeEntity;
|
|
@@ -47,6 +48,8 @@ public class DcsbWebService extends BaseWebCtl {
|
|
|
private MtService mtService;
|
|
|
@Autowired
|
|
|
private GqService gqService;
|
|
|
+ @Autowired
|
|
|
+ private BwService bwService;
|
|
|
|
|
|
public boolean queryUser(String userCode, String pwd) {
|
|
|
pwd = SHA256Encrypt(pwd);
|
|
@@ -209,8 +212,9 @@ public class DcsbWebService extends BaseWebCtl {
|
|
|
* @param mtId
|
|
|
* @return
|
|
|
*/
|
|
|
- public List<BwEntity> getBwByMt(String mtId) {
|
|
|
- return null;
|
|
|
+ public List<BwEntity> getBwByJyrid(String jyrId) {
|
|
|
+ List<BwEntity> list = bwService.findByJyrid(jyrId);
|
|
|
+ return list;
|
|
|
}
|
|
|
|
|
|
/**
|