12345678910111213141516171819 |
- package org.jeecg.modules.demo.hzz.shjsgc.lhgc.xjb.service;
- import org.jeecg.modules.demo.hzz.shjsgc.lhgc.xjb.entity.RmXjbqktjb;
- import com.baomidou.mybatisplus.extension.service.IService;
- /**
- * @Description: 橡胶坝情况统计表
- * @Author: jeecg-boot
- * @Date: 2022-01-18
- * @Version: V1.0
- */
- public interface IRmXjbqktjbService extends IService<RmXjbqktjb> {
- public void GenaratexjbgcGeo();
- public void delete(String id);
- void insertshxm(String id,String xzqh, String xmmc, String xmid, String xmlx, String gldw, String zgbm, String bz,String geoinfo,String sfwpgblxm,String szhl,String spzt);
- void deshxm(String xmid);
- void updateshxm(String xmmc,String xzqh,String gldw,String zgbm, String bz,String geoinfo,String sfwpgblxm,String szhl,String spzt,String id);
- public int deleteMany(String[] ids);
- }
|