|
@ -35,7 +35,10 @@ public class DcEventTypeServiceImpl implements IDcEventTypeService |
|
|
@Override |
|
|
@Override |
|
|
public DcEventType selectDcEventTypeByEventType(Integer eventType) |
|
|
public DcEventType selectDcEventTypeByEventType(Integer eventType) |
|
|
{ |
|
|
{ |
|
|
return dcEventTypeMapper.selectDcEventTypeByEventType(eventType); |
|
|
DcEventType dcEventType = dcEventTypeMapper.selectDcEventTypeByEventType(eventType); |
|
|
|
|
|
List<DcProcessConfig> configList = dcProcessConfigMapper.selectDcProcessConfigByEventType(eventType); |
|
|
|
|
|
dcEventType.setProcessConfigList(configList); |
|
|
|
|
|
return dcEventType; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|