查询辅助项资料
This commit is contained in:
parent
c3497d1078
commit
57e6eeda10
|
@ -17,5 +17,15 @@ import java.util.List;
|
||||||
public interface IGlFzxzlDao extends IBaseDao<GlFzxzlEntity, String> {
|
public interface IGlFzxzlDao extends IBaseDao<GlFzxzlEntity, String> {
|
||||||
|
|
||||||
List<JSONObject> queryFzhs(GlFzxzlEntityDto glFzxzlEntityDto);
|
List<JSONObject> queryFzhs(GlFzxzlEntityDto glFzxzlEntityDto);
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @content 查询辅助项资料
|
||||||
|
* @Param
|
||||||
|
* @Return
|
||||||
|
* @Author hecan
|
||||||
|
* @Date 2024/8/28 10:47
|
||||||
|
* **/
|
||||||
|
List<GlFzxzlEntity> queryGlFzxzlEntity(GlFzxzlEntity glFzxzlEntity);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -26,5 +26,11 @@ public class GlFzxzlDaoImpl extends MybatisGenericDao<GlFzxzlEntity, String> imp
|
||||||
List<JSONObject> o = (List<JSONObject>) super.selectList(getSqlIdPrifx() + "queryFzhs", glFzxzlEntityDto);
|
List<JSONObject> o = (List<JSONObject>) super.selectList(getSqlIdPrifx() + "queryFzhs", glFzxzlEntityDto);
|
||||||
return o;
|
return o;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@DS("#glFzxzlEntity.dataSourceCode")
|
||||||
|
@Override
|
||||||
|
public List<GlFzxzlEntity> queryGlFzxzlEntity(GlFzxzlEntity glFzxzlEntity) {
|
||||||
|
return super.queryByLike(glFzxzlEntity);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue