nacos feign

This commit is contained in:
GYJ
2025-02-08 15:38:02 +08:00
parent 26833efde5
commit 5d2533be35
13 changed files with 212 additions and 56 deletions

View File

@@ -1,5 +1,7 @@
package com.czg.service.system.service.impl;
import com.czg.resp.CzgResult;
import com.czg.service.system.dto.SysParamsDTO;
import com.mybatisflex.spring.service.impl.ServiceImpl;
import com.czg.service.system.entity.SysParams;
import com.czg.service.system.mapper.SysParamsMapper;
@@ -15,4 +17,13 @@ import org.springframework.stereotype.Service;
@Service
public class SysParamsServiceImpl extends ServiceImpl<SysParamsMapper, SysParams> implements SysParamsService{
@Override
public CzgResult<Long> insertParams(SysParamsDTO paramsDTO) {
return null;
}
@Override
public CzgResult<SysParamsDTO> updateParams(SysParamsDTO paramsDTO) {
return null;
}
}