Commit 64ad65b8 authored by libin's avatar libin

companybase

parent 3a172c4a
...@@ -3,9 +3,12 @@ package com.xxfc.platform.vehicle.mapper; ...@@ -3,9 +3,12 @@ package com.xxfc.platform.vehicle.mapper;
import com.xxfc.platform.vehicle.entity.CompanyBase; import com.xxfc.platform.vehicle.entity.CompanyBase;
import com.xxfc.platform.vehicle.pojo.dto.CompanyBaseDetailDTO; import com.xxfc.platform.vehicle.pojo.dto.CompanyBaseDetailDTO;
import com.xxfc.platform.vehicle.pojo.vo.CompanyVo;
import org.apache.ibatis.annotations.*; import org.apache.ibatis.annotations.*;
import tk.mybatis.mapper.common.Mapper; import tk.mybatis.mapper.common.Mapper;
import java.util.List;
public interface CompanyBaseMapper extends Mapper<CompanyBase> { public interface CompanyBaseMapper extends Mapper<CompanyBase> {
...@@ -20,4 +23,6 @@ public interface CompanyBaseMapper extends Mapper<CompanyBase> { ...@@ -20,4 +23,6 @@ public interface CompanyBaseMapper extends Mapper<CompanyBase> {
})*/ })*/
@ResultType(value = CompanyBaseDetailDTO.class) @ResultType(value = CompanyBaseDetailDTO.class)
CompanyBaseDetailDTO findCompanyBaseById(@Param("id") Integer id); CompanyBaseDetailDTO findCompanyBaseById(@Param("id") Integer id);
List<CompanyBase> getList(CompanyVo companyVo);
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment