package com.ruoyi.wisdomarbitrate.mapper; import com.ruoyi.wisdomarbitrate.domain.SealManage; import org.apache.ibatis.annotations.Mapper; import java.util.List; @Mapper public interface SealManageMapper { List selectSealList(SealManage sealManage); int insertSealManage(SealManage sealManage); int updateSealManage(SealManage sealManage1); }