Commit aa0a69c8 authored by ysongq's avatar ysongq

Merge remote-tracking branch 'origin/dm_dev' into dm_dev

parents 1031aad6 5c5853ba
......@@ -164,6 +164,12 @@ public class ApiInterface extends BaseObject implements Serializable {
@TableField(exist = false)
private Integer pageRow;
/**
* 最大数据量
*/
@TableField(exist = false)
private Integer maxData;
/*---------------------------------日志查询--------------------------------*/
/**
* 日志id
......
......@@ -243,7 +243,6 @@ public class ApiInterfaceServiceImpl implements ApiInterfaceService {
/**
* 获取单次调用有效授权
*
* @param apiId
* @param modeType
* @param date
......@@ -277,7 +276,6 @@ public class ApiInterfaceServiceImpl implements ApiInterfaceService {
return authCall + authDateCall;
}
/**
* 获取api自定义信息
*
......
......@@ -33,7 +33,8 @@
aic.response_param AS responseParam,
aic.max_row AS maxRow,
aic.page_row AS pageRow,
aic.resp_code AS respCode
aic.resp_code AS respCode,
floor(aic.max_row/aic.page_row) AS maxData
FROM t_api_interface AS ai
LEFT JOIN t_api_interface_custom AS aic ON ai.id = aic.api_interface_id AND aic.is_deleted =0
WHERE
......
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