AssetGroupMapper.java 3.17 KB
Newer Older
1 2 3 4 5 6 7
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;
8 9
import pwc.taxtech.atms.entity.AssetGroup;
import pwc.taxtech.atms.entity.AssetGroupExample;
10 11 12 13 14

@Mapper
public interface AssetGroupMapper extends MyMapper {
    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
15
     * This method corresponds to the database table TAX_ADMIN.ASSET_GROUP
16 17 18 19 20 21 22
     *
     * @mbg.generated
     */
    long countByExample(AssetGroupExample example);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
23
     * This method corresponds to the database table TAX_ADMIN.ASSET_GROUP
24 25 26 27 28 29 30
     *
     * @mbg.generated
     */
    int deleteByExample(AssetGroupExample example);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
31
     * This method corresponds to the database table TAX_ADMIN.ASSET_GROUP
32 33 34 35 36 37 38
     *
     * @mbg.generated
     */
    int deleteByPrimaryKey(String id);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
39
     * This method corresponds to the database table TAX_ADMIN.ASSET_GROUP
40 41 42 43 44 45 46
     *
     * @mbg.generated
     */
    int insert(AssetGroup record);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
47
     * This method corresponds to the database table TAX_ADMIN.ASSET_GROUP
48 49 50 51 52 53 54
     *
     * @mbg.generated
     */
    int insertSelective(AssetGroup record);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
55
     * This method corresponds to the database table TAX_ADMIN.ASSET_GROUP
56 57 58 59 60 61 62
     *
     * @mbg.generated
     */
    List<AssetGroup> selectByExampleWithRowbounds(AssetGroupExample example, RowBounds rowBounds);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
63
     * This method corresponds to the database table TAX_ADMIN.ASSET_GROUP
64 65 66 67 68 69 70
     *
     * @mbg.generated
     */
    List<AssetGroup> selectByExample(AssetGroupExample example);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
71
     * This method corresponds to the database table TAX_ADMIN.ASSET_GROUP
72 73 74 75 76 77 78
     *
     * @mbg.generated
     */
    AssetGroup selectByPrimaryKey(String id);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
79
     * This method corresponds to the database table TAX_ADMIN.ASSET_GROUP
80 81 82 83 84 85 86
     *
     * @mbg.generated
     */
    int updateByExampleSelective(@Param("record") AssetGroup record, @Param("example") AssetGroupExample example);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
87
     * This method corresponds to the database table TAX_ADMIN.ASSET_GROUP
88 89 90 91 92 93 94
     *
     * @mbg.generated
     */
    int updateByExample(@Param("record") AssetGroup record, @Param("example") AssetGroupExample example);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
95
     * This method corresponds to the database table TAX_ADMIN.ASSET_GROUP
96 97 98 99 100 101 102
     *
     * @mbg.generated
     */
    int updateByPrimaryKeySelective(AssetGroup record);

    /**
     * This method was generated by MyBatis Generator.
neo's avatar
neo committed
103
     * This method corresponds to the database table TAX_ADMIN.ASSET_GROUP
104 105 106 107 108
     *
     * @mbg.generated
     */
    int updateByPrimaryKey(AssetGroup record);
}