|
@@ -1,6 +1,8 @@
|
|
|
package com.ruoyi.interfaces.service.impl;
|
|
package com.ruoyi.interfaces.service.impl;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
+
|
|
|
|
|
+import com.ruoyi.common.utils.uuid.IdUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
|
import com.ruoyi.interfaces.mapper.MdDataSetMapper;
|
|
import com.ruoyi.interfaces.mapper.MdDataSetMapper;
|
|
@@ -52,6 +54,7 @@ public class MdDataSetServiceImpl implements IMdDataSetService
|
|
|
@Override
|
|
@Override
|
|
|
public int insertMdDataSet(MdDataSet mdDataSet)
|
|
public int insertMdDataSet(MdDataSet mdDataSet)
|
|
|
{
|
|
{
|
|
|
|
|
+ mdDataSet.setDsCode(IdUtils.fastUUID());
|
|
|
return mdDataSetMapper.insertMdDataSet(mdDataSet);
|
|
return mdDataSetMapper.insertMdDataSet(mdDataSet);
|
|
|
}
|
|
}
|
|
|
|
|
|