⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bussinesstypedao.java

📁 一个关于tlms的一个小程序 看看能否帮助到别人
💻 JAVA
字号:
package com.szmx.tlms.admin.dao;

import com.szmx.framework.base.dao.BaseDao;
import com.szmx.framework.base.model.Pagination;
import com.szmx.tlms.admin.model.BussinessType;

import java.util.Map;

/**
 * Created by IntelliJ IDEA.
 * User: tan
 * Date: 2006-7-26
 * Time: 11:00:13
 * To change this template use File | Settings | File Templates.
 */
public interface BussinessTypeDAO extends BaseDao {

    // BussinessType DAO Methods Begin: ----------------------------------------

    /**
     * This method is for admin to search BussinessType based on
     * search criteria with pagination and sort.
     *
     * @param pagination (the pagination object)
     * @param paraMap    (map)[should contains properties]
     *                   bussinessID : Long
     *                   busSpecies : String
     *                   prefixContract : String
     * @return RelationInfo list for search result
     */
    public Pagination searchBussinessTypes(Pagination pagination, Map paraMap);

    /**
     * This method is for admin to get the BussinessType based on special Long id.
     *
     * @param id (the physic id of the BussinessType : Long)
     * @return RelationInfo object for search result
     */
    public BussinessType getBussinessType(Long id);


    /**
     * This method is for admin to save the BussinessType based on special BussinessType object.
     *
     * @param bussinessType (BussinessType object)
     */
    public void saveBussinessType(BussinessType bussinessType);

    /**
     * This method is for admin to remove the BussinessType based on checked BussinessType.
     *
     * @param id (the id of BussinessType , Long value.)
     */
    public void removeBussinessType(Long id);

// BussinessType DAO Methods End: ----------------------------------------

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -