package com.whdc.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.whdc.model.entity.Organization; public interface OrganizationMapper extends BaseMapper { int deleteByPrimaryKey(Integer id); int insert(Organization record); int insertSelective(Organization record); Organization selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(Organization record); int updateByPrimaryKey(Organization record); }