|
@@ -174,6 +174,12 @@ public class TbLinkParaStupService {
|
|
return paraObj.toDto();
|
|
return paraObj.toDto();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 선택한 링크에 대하여 파라미터 값 변경
|
|
|
|
+ * @param paramId
|
|
|
|
+ * @param ids
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
@Transactional
|
|
@Transactional
|
|
public TbLinkParaStupDto applyParamSelect(Long paramId, List<Long> ids) {
|
|
public TbLinkParaStupDto applyParamSelect(Long paramId, List<Long> ids) {
|
|
TbLinkParaStupDto result = findById(paramId);
|
|
TbLinkParaStupDto result = findById(paramId);
|
|
@@ -181,6 +187,11 @@ public class TbLinkParaStupService {
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 모든 링크에 대하여 파라미터 값 변경
|
|
|
|
+ * @param paramId
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
@Transactional
|
|
@Transactional
|
|
public TbLinkParaStupDto applyParamAll(Long paramId) {
|
|
public TbLinkParaStupDto applyParamAll(Long paramId) {
|
|
TbLinkParaStupDto result = findById(paramId);
|
|
TbLinkParaStupDto result = findById(paramId);
|