578a6658b09c5a97a353b8472c9d7dbfdbb3f3ab.svn-base 440 B

12345678910111213141516
  1. package org.jeecg.modules.demo.hzz.shjsgc.xmrk.service;
  2. import org.jeecg.modules.demo.hzz.shjsgc.xmrk.entity.RmAxhdzyzb;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. import java.util.List;
  5. /**
  6. * @Description: 河段主要指标
  7. * @Author: jeecg-boot
  8. * @Date: 2022-03-31
  9. * @Version: V1.0
  10. */
  11. public interface IRmAxhdzyzbService extends IService<RmAxhdzyzb> {
  12. public List<RmAxhdzyzb> selectByMainId(String mainId);
  13. }