|
@@ -3,9 +3,11 @@ package com.sooka.system.medicine.plant.service.impl;
|
|
|
|
|
|
import com.sooka.common.core.text.Convert;
|
|
|
import com.sooka.common.utils.DateUtils;
|
|
|
+import com.sooka.framework.util.ShiroUtils;
|
|
|
import com.sooka.system.medicine.plant.domain.TGuijiMedicinePlant;
|
|
|
import com.sooka.system.medicine.plant.mapper.TGuijiMedicinePlantMapper;
|
|
|
import com.sooka.system.medicine.plant.service.ITGuijiMedicinePlantService;
|
|
|
+import com.sooka.system.service.impl.Guiji_Base_Service;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
@@ -18,7 +20,7 @@ import java.util.List;
|
|
|
* @date 2022-08-22
|
|
|
*/
|
|
|
@Service
|
|
|
-public class TGuijiMedicinePlantServiceImpl implements ITGuijiMedicinePlantService
|
|
|
+public class TGuijiMedicinePlantServiceImpl extends Guiji_Base_Service implements ITGuijiMedicinePlantService
|
|
|
{
|
|
|
@Autowired
|
|
|
private TGuijiMedicinePlantMapper tGuijiMedicinePlantMapper;
|
|
@@ -44,6 +46,14 @@ public class TGuijiMedicinePlantServiceImpl implements ITGuijiMedicinePlantServi
|
|
|
@Override
|
|
|
public List<TGuijiMedicinePlant> selectTGuijiMedicinePlantList(TGuijiMedicinePlant tGuijiMedicinePlant)
|
|
|
{
|
|
|
+ tGuijiMedicinePlant.setInterfaceinfoId("721f43b9-9b5a-44e6-9e93-a652bcfaf195");
|
|
|
+ tGuijiMedicinePlant.setInterfaceinfoName("共享-市公积金-共同借款人信息");
|
|
|
+ tGuijiMedicinePlant.setInterfacetype("platform_interfacetype_1");
|
|
|
+ Long deptId = ShiroUtils.getSysUser().getDept().getDeptId();
|
|
|
+ String deptName = ShiroUtils.getSysUser().getDept().getDeptName();
|
|
|
+ tGuijiMedicinePlant.setDeptId(deptId);
|
|
|
+ tGuijiMedicinePlant.setDeptName(deptName);
|
|
|
+ //add_log(tGuijiMedicinePlant);
|
|
|
return tGuijiMedicinePlantMapper.selectTGuijiMedicinePlantList(tGuijiMedicinePlant);
|
|
|
}
|
|
|
|