|
@@ -0,0 +1,19 @@
|
|
|
+package com.gqy.document.service.impl;
|
|
|
+
|
|
|
+import com.gqy.document.domain.DcPsParam;
|
|
|
+import com.gqy.document.service.IDcPsParamService;
|
|
|
+import com.gqy.system.mapper.DcPsParamMapper;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+@Service
|
|
|
+public class IDcPsParamServiceImpl implements IDcPsParamService {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private DcPsParamMapper dcPsParamMapper;
|
|
|
+
|
|
|
+
|
|
|
+ public int insertDcPsParam(DcPsParam dcPsParam) {
|
|
|
+ return dcPsParamMapper.insertDcPsParam(dcPsParam);
|
|
|
+ }
|
|
|
+}
|