package pwc.taxtech.atms.dao; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.session.RowBounds; import pwc.taxtech.atms.MyMapper; import pwc.taxtech.atms.dpo.DimensionParamDto; import pwc.taxtech.atms.dpo.UnionDimensionValueOrg; import pwc.taxtech.atms.entity.DimensionValueOrg; import pwc.taxtech.atms.entity.DimensionValueOrgExample; @Mapper public interface DimensionValueOrgMapper extends MyMapper { /** * This method was generated by MyBatis Generator. * This method corresponds to the database table dimension_value_org * * @mbg.generated */ long countByExample(DimensionValueOrgExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table dimension_value_org * * @mbg.generated */ int deleteByExample(DimensionValueOrgExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table dimension_value_org * * @mbg.generated */ int deleteByPrimaryKey(String id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table dimension_value_org * * @mbg.generated */ int insert(DimensionValueOrg record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table dimension_value_org * * @mbg.generated */ int insertSelective(DimensionValueOrg record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table dimension_value_org * * @mbg.generated */ List<DimensionValueOrg> selectByExampleWithRowbounds(DimensionValueOrgExample example, RowBounds rowBounds); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table dimension_value_org * * @mbg.generated */ List<DimensionValueOrg> selectByExample(DimensionValueOrgExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table dimension_value_org * * @mbg.generated */ DimensionValueOrg selectByPrimaryKey(String id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table dimension_value_org * * @mbg.generated */ int updateByExampleSelective(@Param("record") DimensionValueOrg record, @Param("example") DimensionValueOrgExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table dimension_value_org * * @mbg.generated */ int updateByExample(@Param("record") DimensionValueOrg record, @Param("example") DimensionValueOrgExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table dimension_value_org * * @mbg.generated */ int updateByPrimaryKeySelective(DimensionValueOrg record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table dimension_value_org * * @mbg.generated */ int updateByPrimaryKey(DimensionValueOrg record); List<UnionDimensionValueOrg> selectUnionDimensionValueOrgByDimension(DimensionParamDto dimensionParamDto); }