TContractorPersonMapper.java 1.52 KB
Newer Older
耿迪迪's avatar
耿迪迪 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
package com.zehong.system.mapper;

import java.util.List;
import com.zehong.system.domain.TContractorPerson;
import com.zehong.system.domain.vo.TContractorPersonVo;

/**
 * 承包商人员信息Mapper接口
 * 
 * @author zehong
 * @date 2022-06-29
 */
public interface TContractorPersonMapper 
{
    /**
     * 查询承包商人员信息
     * 
     * @param id 承包商人员信息ID
     * @return 承包商人员信息
     */
    public TContractorPersonVo selectTContractorPersonById(Long id);

    /**
     * 查询承包商人员信息列表
     * 
     * @param tContractorPerson 承包商人员信息
     * @return 承包商人员信息集合
     */
    public List<TContractorPersonVo> selectTContractorPersonList(TContractorPerson tContractorPerson);

    /**
     * 新增承包商人员信息
     * 
     * @param tContractorPerson 承包商人员信息
     * @return 结果
     */
    public int insertTContractorPerson(TContractorPerson tContractorPerson);

    /**
     * 修改承包商人员信息
     * 
     * @param tContractorPerson 承包商人员信息
     * @return 结果
     */
    public int updateTContractorPerson(TContractorPerson tContractorPerson);

    /**
     * 删除承包商人员信息
     * 
     * @param id 承包商人员信息ID
     * @return 结果
     */
    public int deleteTContractorPersonById(Long id);

    /**
     * 批量删除承包商人员信息
     * 
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteTContractorPersonByIds(Long[] ids);
}