| 1234567891011121314151617181920 | package org.jeecg.modules.demo.hzz.shjsgc.lhgc.sz.service;import org.jeecg.modules.demo.hzz.shjsgc.lhgc.sz.entity.RmSzqktjb;import com.baomidou.mybatisplus.extension.service.IService;/** * @Description: 水闸 * @Author: jeecg-boot * @Date:   2022-01-20 * @Version: V1.0 */public interface IRmSzqktjbService extends IService<RmSzqktjb> {    public void GenarateSzgcGeo();    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);}
 |