16 changed files with 1081 additions and 285 deletions
@ -0,0 +1,115 @@ |
|||
package com.kms.yg.df.controller; |
|||
|
|||
import java.util.Arrays; |
|||
import java.util.List; |
|||
|
|||
import com.shuili.common.core.controller.BaseController; |
|||
import com.shuili.common.core.domain.SearchParam; |
|||
import com.shuili.common.utils.poi.ExcelUtil; |
|||
import com.kms.common.utils.BaseEntityUtils; |
|||
|
|||
|
|||
import io.swagger.annotations.Api; |
|||
import io.swagger.annotations.ApiOperation; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.web.bind.annotation.GetMapping; |
|||
import org.springframework.web.bind.annotation.PostMapping; |
|||
import org.springframework.web.bind.annotation.PutMapping; |
|||
import org.springframework.web.bind.annotation.DeleteMapping; |
|||
import org.springframework.web.bind.annotation.PathVariable; |
|||
import org.springframework.web.bind.annotation.RequestBody; |
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
import com.baomidou.mybatisplus.core.metadata.IPage; |
|||
import com.shuili.common.mybaitsplus.BeanToWrapper; |
|||
|
|||
import com.shuili.common.annotation.Log; |
|||
import com.shuili.common.core.domain.AjaxResult; |
|||
import com.shuili.common.enums.BusinessType; |
|||
import com.kms.yg.df.domain.BsSgcDfFxyhdc; |
|||
import com.kms.yg.df.service.BsSgcDfFxyhdcService; |
|||
|
|||
|
|||
/** |
|||
* 风险隐患调查Controller |
|||
* |
|||
* @author kms |
|||
* @date 2024-02-28 |
|||
*/ |
|||
@RestController |
|||
@RequestMapping("/df/fxyhdc") |
|||
@Api(tags = "风险隐患调查") |
|||
public class BsSgcDfFxyhdcController extends BaseController |
|||
{ |
|||
@Autowired |
|||
private BsSgcDfFxyhdcService bsSgcDfFxyhdcService; |
|||
|
|||
|
|||
/** |
|||
* 查询风险隐患调查列表 |
|||
*/ |
|||
@PostMapping("/list") |
|||
@ApiOperation("风险隐患调查列表") |
|||
public IPage list(@RequestBody SearchParam<BsSgcDfFxyhdc> sp) |
|||
{ |
|||
return bsSgcDfFxyhdcService.selectPage(sp); |
|||
} |
|||
|
|||
/** |
|||
* 导出风险隐患调查列表 |
|||
*/ |
|||
@Log(title = "风险隐患调查导出", businessType = BusinessType.EXPORT) |
|||
@PostMapping("/export") |
|||
@ApiOperation("风险隐患调查导出") |
|||
public AjaxResult export(@RequestBody BsSgcDfFxyhdc bsSgcDfFxyhdc) |
|||
{ |
|||
List<BsSgcDfFxyhdc> list = bsSgcDfFxyhdcService.listByIds(bsSgcDfFxyhdc.getIds()); |
|||
ExcelUtil<BsSgcDfFxyhdc> util = new ExcelUtil<>(BsSgcDfFxyhdc.class); |
|||
return util.exportExcel(list, "fxyhdc"); |
|||
} |
|||
|
|||
/** |
|||
* 获取风险隐患调查详细信息 |
|||
*/ |
|||
@ApiOperation(" 风险隐患调查详情") |
|||
@GetMapping(value = "/{id}") |
|||
public AjaxResult getInfo(@PathVariable("id") String id) |
|||
{ |
|||
return AjaxResult.success(bsSgcDfFxyhdcService.getById(id)); |
|||
} |
|||
|
|||
/** |
|||
* 新增风险隐患调查 |
|||
*/ |
|||
@Log(title = "风险隐患调查新增", businessType = BusinessType.INSERT) |
|||
@PostMapping |
|||
@ApiOperation("风险隐患调查新增") |
|||
public AjaxResult add(@RequestBody BsSgcDfFxyhdc bsSgcDfFxyhdc) |
|||
{ |
|||
BaseEntityUtils.preInsert(bsSgcDfFxyhdc); |
|||
return toAjax(bsSgcDfFxyhdcService.save(bsSgcDfFxyhdc)); |
|||
} |
|||
|
|||
/** |
|||
* 修改风险隐患调查 |
|||
*/ |
|||
@ApiOperation("风险隐患调查修改") |
|||
@Log(title = "风险隐患调查修改", businessType = BusinessType.UPDATE) |
|||
@PutMapping |
|||
public AjaxResult edit(@RequestBody BsSgcDfFxyhdc bsSgcDfFxyhdc) |
|||
{ |
|||
return toAjax(bsSgcDfFxyhdcService.updateById(bsSgcDfFxyhdc)); |
|||
} |
|||
|
|||
/** |
|||
* 删除风险隐患调查 |
|||
*/ |
|||
@ApiOperation("风险隐患调查删除") |
|||
@Log(title = "风险隐患调查删除", businessType = BusinessType.DELETE) |
|||
@DeleteMapping("/{ids}") |
|||
public AjaxResult remove(@PathVariable String[] ids) |
|||
{ |
|||
return toAjax(bsSgcDfFxyhdcService.removeByIds(Arrays.asList(ids))); |
|||
} |
|||
} |
@ -0,0 +1,115 @@ |
|||
package com.kms.yg.df.controller; |
|||
|
|||
import java.util.Arrays; |
|||
import java.util.List; |
|||
|
|||
import com.shuili.common.core.controller.BaseController; |
|||
import com.shuili.common.core.domain.SearchParam; |
|||
import com.shuili.common.utils.poi.ExcelUtil; |
|||
import com.kms.common.utils.BaseEntityUtils; |
|||
|
|||
|
|||
import io.swagger.annotations.Api; |
|||
import io.swagger.annotations.ApiOperation; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.web.bind.annotation.GetMapping; |
|||
import org.springframework.web.bind.annotation.PostMapping; |
|||
import org.springframework.web.bind.annotation.PutMapping; |
|||
import org.springframework.web.bind.annotation.DeleteMapping; |
|||
import org.springframework.web.bind.annotation.PathVariable; |
|||
import org.springframework.web.bind.annotation.RequestBody; |
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
import com.baomidou.mybatisplus.core.metadata.IPage; |
|||
import com.shuili.common.mybaitsplus.BeanToWrapper; |
|||
|
|||
import com.shuili.common.annotation.Log; |
|||
import com.shuili.common.core.domain.AjaxResult; |
|||
import com.shuili.common.enums.BusinessType; |
|||
import com.kms.yg.df.domain.BsSgcDfHdmtzz; |
|||
import com.kms.yg.df.service.BsSgcDfHdmtzzService; |
|||
|
|||
|
|||
/** |
|||
* 横断面特征值Controller |
|||
* |
|||
* @author kms |
|||
* @date 2024-02-28 |
|||
*/ |
|||
@RestController |
|||
@RequestMapping("/df/hdmtzz") |
|||
@Api(tags = "横断面特征值") |
|||
public class BsSgcDfHdmtzzController extends BaseController |
|||
{ |
|||
@Autowired |
|||
private BsSgcDfHdmtzzService bsSgcDfHdmtzzService; |
|||
|
|||
|
|||
/** |
|||
* 查询横断面特征值列表 |
|||
*/ |
|||
@PostMapping("/list") |
|||
@ApiOperation("横断面特征值列表") |
|||
public IPage list(@RequestBody SearchParam<BsSgcDfHdmtzz> sp) |
|||
{ |
|||
return bsSgcDfHdmtzzService.selectPage(sp); |
|||
} |
|||
|
|||
/** |
|||
* 导出横断面特征值列表 |
|||
*/ |
|||
@Log(title = "横断面特征值导出", businessType = BusinessType.EXPORT) |
|||
@PostMapping("/export") |
|||
@ApiOperation("横断面特征值导出") |
|||
public AjaxResult export(@RequestBody BsSgcDfHdmtzz bsSgcDfHdmtzz) |
|||
{ |
|||
List<BsSgcDfHdmtzz> list = bsSgcDfHdmtzzService.listByIds(bsSgcDfHdmtzz.getIds()); |
|||
ExcelUtil<BsSgcDfHdmtzz> util = new ExcelUtil<>(BsSgcDfHdmtzz.class); |
|||
return util.exportExcel(list, "hdmtzz"); |
|||
} |
|||
|
|||
/** |
|||
* 获取横断面特征值详细信息 |
|||
*/ |
|||
@ApiOperation(" 横断面特征值详情") |
|||
@GetMapping(value = "/{id}") |
|||
public AjaxResult getInfo(@PathVariable("id") String id) |
|||
{ |
|||
return AjaxResult.success(bsSgcDfHdmtzzService.getById(id)); |
|||
} |
|||
|
|||
/** |
|||
* 新增横断面特征值 |
|||
*/ |
|||
@Log(title = "横断面特征值新增", businessType = BusinessType.INSERT) |
|||
@PostMapping |
|||
@ApiOperation("横断面特征值新增") |
|||
public AjaxResult add(@RequestBody BsSgcDfHdmtzz bsSgcDfHdmtzz) |
|||
{ |
|||
BaseEntityUtils.preInsert(bsSgcDfHdmtzz); |
|||
return toAjax(bsSgcDfHdmtzzService.save(bsSgcDfHdmtzz)); |
|||
} |
|||
|
|||
/** |
|||
* 修改横断面特征值 |
|||
*/ |
|||
@ApiOperation("横断面特征值修改") |
|||
@Log(title = "横断面特征值修改", businessType = BusinessType.UPDATE) |
|||
@PutMapping |
|||
public AjaxResult edit(@RequestBody BsSgcDfHdmtzz bsSgcDfHdmtzz) |
|||
{ |
|||
return toAjax(bsSgcDfHdmtzzService.updateById(bsSgcDfHdmtzz)); |
|||
} |
|||
|
|||
/** |
|||
* 删除横断面特征值 |
|||
*/ |
|||
@ApiOperation("横断面特征值删除") |
|||
@Log(title = "横断面特征值删除", businessType = BusinessType.DELETE) |
|||
@DeleteMapping("/{ids}") |
|||
public AjaxResult remove(@PathVariable String[] ids) |
|||
{ |
|||
return toAjax(bsSgcDfHdmtzzService.removeByIds(Arrays.asList(ids))); |
|||
} |
|||
} |
@ -0,0 +1,85 @@ |
|||
package com.kms.yg.df.domain; |
|||
|
|||
import java.util.Date; |
|||
import com.fasterxml.jackson.annotation.JsonFormat; |
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
import com.shuili.common.annotation.Excel; |
|||
import com.shuili.common.core.domain.BaseEntity; |
|||
import com.baomidou.mybatisplus.annotation.TableName; |
|||
|
|||
|
|||
|
|||
/** |
|||
* 风险隐患调查对象 bs_sgc_df_fxyhdc |
|||
* |
|||
* @author kms |
|||
* @date 2024-02-28 |
|||
*/ |
|||
@TableName("bs_sgc_df_fxyhdc") |
|||
@Data |
|||
@ApiModel("风险隐患调查") |
|||
public class BsSgcDfFxyhdc extends BaseEntity |
|||
{ |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** 堤防代码 */ |
|||
@Excel(name = "堤防代码") |
|||
@ApiModelProperty("堤防代码") |
|||
private String dikeCode; |
|||
|
|||
/** 工程隐患描述 */ |
|||
@Excel(name = "工程隐患描述") |
|||
@ApiModelProperty("工程隐患描述") |
|||
private String dikeSafety; |
|||
|
|||
/** 工程隐患位置 */ |
|||
@Excel(name = "工程隐患位置") |
|||
@ApiModelProperty("工程隐患位置") |
|||
private String dikeSafetyLoc; |
|||
|
|||
/** 生效时间 */ |
|||
@JsonFormat(pattern = "yyyy-MM-dd") |
|||
@Excel(name = "生效时间", width = 30, dateFormat = "yyyy-MM-dd") |
|||
@ApiModelProperty("生效时间") |
|||
private Date fromTime; |
|||
|
|||
/** 备注 */ |
|||
@Excel(name = "备注") |
|||
@ApiModelProperty("备注") |
|||
private String note; |
|||
|
|||
/** 记录生效时间 */ |
|||
@JsonFormat(pattern = "yyyy-MM-dd") |
|||
@Excel(name = "记录生效时间", width = 30, dateFormat = "yyyy-MM-dd") |
|||
@ApiModelProperty("记录生效时间") |
|||
private Date effDate; |
|||
|
|||
/** 记录失效时间 */ |
|||
@JsonFormat(pattern = "yyyy-MM-dd") |
|||
@Excel(name = "记录失效时间", width = 30, dateFormat = "yyyy-MM-dd") |
|||
@ApiModelProperty("记录失效时间") |
|||
private Date exprDate; |
|||
|
|||
/** $column.columnComment */ |
|||
@Excel(name = "记录失效时间") |
|||
@ApiModelProperty("记录失效时间") |
|||
private String createUid; |
|||
|
|||
/** $column.columnComment */ |
|||
@Excel(name = "记录失效时间") |
|||
@ApiModelProperty("记录失效时间") |
|||
private String updateUid; |
|||
|
|||
/** $column.columnComment */ |
|||
@Excel(name = "记录失效时间") |
|||
@ApiModelProperty("记录失效时间") |
|||
private String owerDept; |
|||
|
|||
/** $column.columnComment */ |
|||
@Excel(name = "记录失效时间") |
|||
@ApiModelProperty("记录失效时间") |
|||
private String relation; |
|||
|
|||
} |
@ -0,0 +1,215 @@ |
|||
package com.kms.yg.df.domain; |
|||
|
|||
import java.util.Date; |
|||
import com.fasterxml.jackson.annotation.JsonFormat; |
|||
import io.swagger.annotations.ApiModel; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
import com.shuili.common.annotation.Excel; |
|||
import com.shuili.common.core.domain.BaseEntity; |
|||
import com.baomidou.mybatisplus.annotation.TableName; |
|||
|
|||
|
|||
|
|||
/** |
|||
* 横断面特征值对象 bs_sgc_df_hdmtzz |
|||
* |
|||
* @author kms |
|||
* @date 2024-02-28 |
|||
*/ |
|||
@TableName("bs_sgc_df_hdmtzz") |
|||
@Data |
|||
@ApiModel("横断面特征值") |
|||
public class BsSgcDfHdmtzz extends BaseEntity |
|||
{ |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** 堤防代码 */ |
|||
@Excel(name = "堤防代码") |
|||
@ApiModelProperty("堤防代码") |
|||
private String dikeCode; |
|||
|
|||
/** 堤防横断面代码 */ |
|||
@Excel(name = "堤防横断面代码") |
|||
@ApiModelProperty("堤防横断面代码") |
|||
private String bntrCode; |
|||
|
|||
/** 测量日期 */ |
|||
@JsonFormat(pattern = "yyyy-MM-dd") |
|||
@Excel(name = "测量日期", width = 30, dateFormat = "yyyy-MM-dd") |
|||
@ApiModelProperty("测量日期") |
|||
private Date srDate; |
|||
|
|||
/** 断面桩号 */ |
|||
@Excel(name = "断面桩号") |
|||
@ApiModelProperty("断面桩号") |
|||
private String trCh; |
|||
|
|||
/** 起始断面位置 */ |
|||
@Excel(name = "起始断面位置") |
|||
@ApiModelProperty("起始断面位置") |
|||
private String intrPl; |
|||
|
|||
/** 起始断面桩号 */ |
|||
@Excel(name = "起始断面桩号") |
|||
@ApiModelProperty("起始断面桩号") |
|||
private String intrCh; |
|||
|
|||
/** 至起始断面距离 */ |
|||
@Excel(name = "至起始断面距离") |
|||
@ApiModelProperty("至起始断面距离") |
|||
private String tointrDs; |
|||
|
|||
/** 起测点位置 */ |
|||
@Excel(name = "起测点位置") |
|||
@ApiModelProperty("起测点位置") |
|||
private String jmsrpnPl; |
|||
|
|||
/** 起测点高程 */ |
|||
@Excel(name = "起测点高程") |
|||
@ApiModelProperty("起测点高程") |
|||
private String jmsrpneLev; |
|||
|
|||
/** 堤身土质 */ |
|||
@Excel(name = "堤身土质") |
|||
@ApiModelProperty("堤身土质") |
|||
private String bnbdSlch; |
|||
|
|||
/** 堤身防渗形式 */ |
|||
@Excel(name = "堤身防渗形式") |
|||
@ApiModelProperty("堤身防渗形式") |
|||
private String bnbdAntp; |
|||
|
|||
/** 堤基地质 */ |
|||
@Excel(name = "堤基地质") |
|||
@ApiModelProperty("堤基地质") |
|||
private String bnbsGl; |
|||
|
|||
/** 堤基防渗形式 */ |
|||
@Excel(name = "堤基防渗形式") |
|||
@ApiModelProperty("堤基防渗形式") |
|||
private String bnbsAntp; |
|||
|
|||
/** 堤身净高度 */ |
|||
@Excel(name = "堤身净高度") |
|||
@ApiModelProperty("堤身净高度") |
|||
private String bnbdHigh; |
|||
|
|||
/** 堤顶高程 */ |
|||
@Excel(name = "堤顶高程") |
|||
@ApiModelProperty("堤顶高程") |
|||
private String bntpeLev; |
|||
|
|||
/** 堤顶超高 */ |
|||
@Excel(name = "堤顶超高") |
|||
@ApiModelProperty("堤顶超高") |
|||
private String bntpFr; |
|||
|
|||
/** 堤顶宽度 */ |
|||
@Excel(name = "堤顶宽度") |
|||
@ApiModelProperty("堤顶宽度") |
|||
private String bntpWd; |
|||
|
|||
/** 迎河面堤脚高程 */ |
|||
@Excel(name = "迎河面堤脚高程") |
|||
@ApiModelProperty("迎河面堤脚高程") |
|||
private String upbnToel; |
|||
|
|||
/** 背河面堤脚高程 */ |
|||
@Excel(name = "背河面堤脚高程") |
|||
@ApiModelProperty("背河面堤脚高程") |
|||
private String dwbnToel; |
|||
|
|||
/** 迎河坡坡比 */ |
|||
@Excel(name = "迎河坡坡比") |
|||
@ApiModelProperty("迎河坡坡比") |
|||
private String upslSlrt; |
|||
|
|||
/** 背河坡坡比 */ |
|||
@Excel(name = "背河坡坡比") |
|||
@ApiModelProperty("背河坡坡比") |
|||
private String dwslSlrt; |
|||
|
|||
/** 迎河坡护坡情况 */ |
|||
@Excel(name = "迎河坡护坡情况") |
|||
@ApiModelProperty("迎河坡护坡情况") |
|||
private String uspsIn; |
|||
|
|||
/** 背河坡护坡情况 */ |
|||
@Excel(name = "背河坡护坡情况") |
|||
@ApiModelProperty("背河坡护坡情况") |
|||
private String dspsIn; |
|||
|
|||
/** 迎河面滩地宽度 */ |
|||
@Excel(name = "迎河面滩地宽度") |
|||
@ApiModelProperty("迎河面滩地宽度") |
|||
private String upbtWide; |
|||
|
|||
/** 迎河面平台(前戗)顶高程 */ |
|||
@Excel(name = "迎河面平台(前戗)顶高程") |
|||
@ApiModelProperty("迎河面平台(前戗)顶高程") |
|||
private String ufrteLev; |
|||
|
|||
/** 迎河面平台(前戗)顶宽 */ |
|||
@Excel(name = "迎河面平台(前戗)顶宽") |
|||
@ApiModelProperty("迎河面平台(前戗)顶宽") |
|||
private String ufrtWide; |
|||
|
|||
/** 迎河面平台(前戗)坡度 */ |
|||
@Excel(name = "迎河面平台(前戗)坡度") |
|||
@ApiModelProperty("迎河面平台(前戗)坡度") |
|||
private String upflRfsl; |
|||
|
|||
/** 背河面平台(后戗)顶高程 */ |
|||
@Excel(name = "背河面平台(后戗)顶高程") |
|||
@ApiModelProperty("背河面平台(后戗)顶高程") |
|||
private String dfrtEl; |
|||
|
|||
/** 背河面平台(后戗)顶宽 */ |
|||
@Excel(name = "背河面平台(后戗)顶宽") |
|||
@ApiModelProperty("背河面平台(后戗)顶宽") |
|||
private String dfrtWide; |
|||
|
|||
/** 背河面平台(后戗)坡度 */ |
|||
@Excel(name = "背河面平台(后戗)坡度") |
|||
@ApiModelProperty("背河面平台(后戗)坡度") |
|||
private String dwflRfsl; |
|||
|
|||
/** 备注 */ |
|||
@Excel(name = "备注") |
|||
@ApiModelProperty("备注") |
|||
private String note; |
|||
|
|||
/** 记录生效时间 */ |
|||
@JsonFormat(pattern = "yyyy-MM-dd") |
|||
@Excel(name = "记录生效时间", width = 30, dateFormat = "yyyy-MM-dd") |
|||
@ApiModelProperty("记录生效时间") |
|||
private Date effDate; |
|||
|
|||
/** 记录失效时间 */ |
|||
@JsonFormat(pattern = "yyyy-MM-dd") |
|||
@Excel(name = "记录失效时间", width = 30, dateFormat = "yyyy-MM-dd") |
|||
@ApiModelProperty("记录失效时间") |
|||
private Date exprDate; |
|||
|
|||
/** $column.columnComment */ |
|||
@Excel(name = "记录失效时间") |
|||
@ApiModelProperty("记录失效时间") |
|||
private String createUid; |
|||
|
|||
/** $column.columnComment */ |
|||
@Excel(name = "记录失效时间") |
|||
@ApiModelProperty("记录失效时间") |
|||
private String updateUid; |
|||
|
|||
/** $column.columnComment */ |
|||
@Excel(name = "记录失效时间") |
|||
@ApiModelProperty("记录失效时间") |
|||
private String owerDept; |
|||
|
|||
/** $column.columnComment */ |
|||
@Excel(name = "记录失效时间") |
|||
@ApiModelProperty("记录失效时间") |
|||
private String relation; |
|||
|
|||
} |
@ -0,0 +1,16 @@ |
|||
package com.kms.yg.df.mapper; |
|||
|
|||
import org.springframework.stereotype.Repository; |
|||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|||
import com.kms.yg.df.domain.BsSgcDfFxyhdc; |
|||
|
|||
/** |
|||
* 风险隐患调查Mapper接口 |
|||
* |
|||
* @author kms |
|||
* @date 2024-02-28 |
|||
*/ |
|||
@Repository |
|||
public interface BsSgcDfFxyhdcMapper extends BaseMapper<BsSgcDfFxyhdc> { |
|||
|
|||
} |
@ -0,0 +1,16 @@ |
|||
package com.kms.yg.df.mapper; |
|||
|
|||
import org.springframework.stereotype.Repository; |
|||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|||
import com.kms.yg.df.domain.BsSgcDfHdmtzz; |
|||
|
|||
/** |
|||
* 横断面特征值Mapper接口 |
|||
* |
|||
* @author kms |
|||
* @date 2024-02-28 |
|||
*/ |
|||
@Repository |
|||
public interface BsSgcDfHdmtzzMapper extends BaseMapper<BsSgcDfHdmtzz> { |
|||
|
|||
} |
@ -0,0 +1,16 @@ |
|||
package com.kms.yg.df.service; |
|||
|
|||
import com.shuili.common.core.service.BaseService; |
|||
import com.kms.yg.df.mapper.BsSgcDfFxyhdcMapper; |
|||
import com.kms.yg.df.domain.BsSgcDfFxyhdc; |
|||
import org.springframework.stereotype.Service; |
|||
/** |
|||
* 风险隐患调查Service接口 |
|||
* |
|||
* @author kms |
|||
* @date 2024-02-28 |
|||
*/ |
|||
@Service |
|||
public class BsSgcDfFxyhdcService extends BaseService<BsSgcDfFxyhdcMapper, BsSgcDfFxyhdc>{ |
|||
|
|||
} |
@ -0,0 +1,16 @@ |
|||
package com.kms.yg.df.service; |
|||
|
|||
import com.shuili.common.core.service.BaseService; |
|||
import com.kms.yg.df.mapper.BsSgcDfHdmtzzMapper; |
|||
import com.kms.yg.df.domain.BsSgcDfHdmtzz; |
|||
import org.springframework.stereotype.Service; |
|||
/** |
|||
* 横断面特征值Service接口 |
|||
* |
|||
* @author kms |
|||
* @date 2024-02-28 |
|||
*/ |
|||
@Service |
|||
public class BsSgcDfHdmtzzService extends BaseService<BsSgcDfHdmtzzMapper, BsSgcDfHdmtzz>{ |
|||
|
|||
} |
Loading…
Reference in new issue