Commit 3b7dfce9447d14faf5da00f60d8cb741d2dfec26
1 parent
46a92bc5e8
Exists in
master
and in
7 other branches
修改风险因素
Showing 1 changed file with 8 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/MatDeliverFacade.java
View file @
3b7dfce
| ... | ... | @@ -14,7 +14,9 @@ |
| 14 | 14 | import com.lyms.platform.operate.web.request.MatDeliverQueryRequest; |
| 15 | 15 | import com.lyms.platform.operate.web.request.NewBabyManagerRequest; |
| 16 | 16 | import com.lyms.platform.operate.web.result.*; |
| 17 | +import com.lyms.platform.operate.web.utils.CommonsHelper; | |
| 17 | 18 | import com.lyms.platform.permission.model.Organization; |
| 19 | +import com.lyms.platform.permission.model.OrganizationQuery; | |
| 18 | 20 | import com.lyms.platform.permission.model.Users; |
| 19 | 21 | import com.lyms.platform.permission.service.OrganizationService; |
| 20 | 22 | import com.lyms.platform.permission.service.UsersService; |
| ... | ... | @@ -27,7 +29,6 @@ |
| 27 | 29 | import org.slf4j.Logger; |
| 28 | 30 | import org.slf4j.LoggerFactory; |
| 29 | 31 | import org.springframework.beans.factory.annotation.Autowired; |
| 30 | -import org.springframework.beans.factory.annotation.Value; | |
| 31 | 32 | import org.springframework.stereotype.Component; |
| 32 | 33 | |
| 33 | 34 | import java.text.SimpleDateFormat; |
| 34 | 35 | |
| ... | ... | @@ -72,7 +73,13 @@ |
| 72 | 73 | private DeleteProcessHandler deleteProcessHandler; |
| 73 | 74 | |
| 74 | 75 | @Autowired |
| 76 | + private DataPermissionService dataPermissionService; | |
| 77 | + | |
| 78 | + @Autowired | |
| 75 | 79 | private OrganizationGroupsFacade organizationGroupsFacade; |
| 80 | + | |
| 81 | + @Autowired | |
| 82 | + private BasicConfigService basicConfigService; | |
| 76 | 83 | |
| 77 | 84 | private static Map<Integer, String> ONE_ENUMS = new HashMap<>(); |
| 78 | 85 |