|
|
@@ -31,7 +31,9 @@ export const SysCodeGenConfigApiAxiosParamCreator = function (configuration?: Co
|
|
|
* @param {number} [id] 主键Id
|
|
|
* @param {number} [codeGenId] 代码生成主表ID
|
|
|
* @param {string} [columnName] 数据库字段名
|
|
|
- * @param {string} [lowerColumnName] 数据库字段名(首字母小写)
|
|
|
+ * @param {string} [propertyName] 实体属性名
|
|
|
+ * @param {number} [columnLength] 字段数据长度
|
|
|
+ * @param {string} [lowerPropertyName] 数据库字段名(首字母小写)
|
|
|
* @param {string} [columnComment] 字段描述
|
|
|
* @param {string} [netType] .NET类型
|
|
|
* @param {string} [effectType] 作用类型(字典)
|
|
|
@@ -59,7 +61,7 @@ export const SysCodeGenConfigApiAxiosParamCreator = function (configuration?: Co
|
|
|
* @param {*} [options] Override http request option.
|
|
|
* @throws {RequiredError}
|
|
|
*/
|
|
|
- apiSysCodeGenConfigDetailGet: async (id?: number, codeGenId?: number, columnName?: string, lowerColumnName?: string, columnComment?: string, netType?: string, effectType?: string, fkEntityName?: string, fkTableName?: string, lowerFkEntityName?: string, fkColumnName?: string, lowerFkColumnName?: string, fkColumnNetType?: string, dictTypeCode?: string, whetherRetract?: string, whetherRequired?: string, queryWhether?: string, queryType?: string, whetherTable?: string, whetherAddUpdate?: string, columnKey?: string, dataType?: string, whetherCommon?: string, tableNickName?: string, displayColumn?: string, valueColumn?: string, pidColumn?: string, orderNo?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
+ apiSysCodeGenConfigDetailGet: async (id?: number, codeGenId?: number, columnName?: string, propertyName?: string, columnLength?: number, lowerPropertyName?: string, columnComment?: string, netType?: string, effectType?: string, fkEntityName?: string, fkTableName?: string, lowerFkEntityName?: string, fkColumnName?: string, lowerFkColumnName?: string, fkColumnNetType?: string, dictTypeCode?: string, whetherRetract?: string, whetherRequired?: string, queryWhether?: string, queryType?: string, whetherTable?: string, whetherAddUpdate?: string, columnKey?: string, dataType?: string, whetherCommon?: string, tableNickName?: string, displayColumn?: string, valueColumn?: string, pidColumn?: string, orderNo?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
const localVarPath = `/api/sysCodeGenConfig/detail`;
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
|
|
@@ -92,8 +94,16 @@ export const SysCodeGenConfigApiAxiosParamCreator = function (configuration?: Co
|
|
|
localVarQueryParameter['ColumnName'] = columnName;
|
|
|
}
|
|
|
|
|
|
- if (lowerColumnName !== undefined) {
|
|
|
- localVarQueryParameter['LowerColumnName'] = lowerColumnName;
|
|
|
+ if (propertyName !== undefined) {
|
|
|
+ localVarQueryParameter['PropertyName'] = propertyName;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (columnLength !== undefined) {
|
|
|
+ localVarQueryParameter['ColumnLength'] = columnLength;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (lowerPropertyName !== undefined) {
|
|
|
+ localVarQueryParameter['LowerPropertyName'] = lowerPropertyName;
|
|
|
}
|
|
|
|
|
|
if (columnComment !== undefined) {
|
|
|
@@ -214,7 +224,9 @@ export const SysCodeGenConfigApiAxiosParamCreator = function (configuration?: Co
|
|
|
* @param {number} [id] 主键Id
|
|
|
* @param {number} [codeGenId] 代码生成主表ID
|
|
|
* @param {string} [columnName] 数据库字段名
|
|
|
- * @param {string} [lowerColumnName] 数据库字段名(首字母小写)
|
|
|
+ * @param {string} [propertyName] 实体属性名
|
|
|
+ * @param {number} [columnLength] 字段数据长度
|
|
|
+ * @param {string} [lowerPropertyName] 数据库字段名(首字母小写)
|
|
|
* @param {string} [columnComment] 字段描述
|
|
|
* @param {string} [netType] .NET类型
|
|
|
* @param {string} [effectType] 作用类型(字典)
|
|
|
@@ -242,7 +254,7 @@ export const SysCodeGenConfigApiAxiosParamCreator = function (configuration?: Co
|
|
|
* @param {*} [options] Override http request option.
|
|
|
* @throws {RequiredError}
|
|
|
*/
|
|
|
- apiSysCodeGenConfigListGet: async (id?: number, codeGenId?: number, columnName?: string, lowerColumnName?: string, columnComment?: string, netType?: string, effectType?: string, fkEntityName?: string, fkTableName?: string, lowerFkEntityName?: string, fkColumnName?: string, lowerFkColumnName?: string, fkColumnNetType?: string, dictTypeCode?: string, whetherRetract?: string, whetherRequired?: string, queryWhether?: string, queryType?: string, whetherTable?: string, whetherAddUpdate?: string, columnKey?: string, dataType?: string, whetherCommon?: string, tableNickName?: string, displayColumn?: string, valueColumn?: string, pidColumn?: string, orderNo?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
+ apiSysCodeGenConfigListGet: async (id?: number, codeGenId?: number, columnName?: string, propertyName?: string, columnLength?: number, lowerPropertyName?: string, columnComment?: string, netType?: string, effectType?: string, fkEntityName?: string, fkTableName?: string, lowerFkEntityName?: string, fkColumnName?: string, lowerFkColumnName?: string, fkColumnNetType?: string, dictTypeCode?: string, whetherRetract?: string, whetherRequired?: string, queryWhether?: string, queryType?: string, whetherTable?: string, whetherAddUpdate?: string, columnKey?: string, dataType?: string, whetherCommon?: string, tableNickName?: string, displayColumn?: string, valueColumn?: string, pidColumn?: string, orderNo?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
|
const localVarPath = `/api/sysCodeGenConfig/list`;
|
|
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
|
const localVarUrlObj = new URL(localVarPath, 'https://example.com');
|
|
|
@@ -275,8 +287,16 @@ export const SysCodeGenConfigApiAxiosParamCreator = function (configuration?: Co
|
|
|
localVarQueryParameter['ColumnName'] = columnName;
|
|
|
}
|
|
|
|
|
|
- if (lowerColumnName !== undefined) {
|
|
|
- localVarQueryParameter['LowerColumnName'] = lowerColumnName;
|
|
|
+ if (propertyName !== undefined) {
|
|
|
+ localVarQueryParameter['PropertyName'] = propertyName;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (columnLength !== undefined) {
|
|
|
+ localVarQueryParameter['ColumnLength'] = columnLength;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (lowerPropertyName !== undefined) {
|
|
|
+ localVarQueryParameter['LowerPropertyName'] = lowerPropertyName;
|
|
|
}
|
|
|
|
|
|
if (columnComment !== undefined) {
|
|
|
@@ -454,7 +474,9 @@ export const SysCodeGenConfigApiFp = function(configuration?: Configuration) {
|
|
|
* @param {number} [id] 主键Id
|
|
|
* @param {number} [codeGenId] 代码生成主表ID
|
|
|
* @param {string} [columnName] 数据库字段名
|
|
|
- * @param {string} [lowerColumnName] 数据库字段名(首字母小写)
|
|
|
+ * @param {string} [propertyName] 实体属性名
|
|
|
+ * @param {number} [columnLength] 字段数据长度
|
|
|
+ * @param {string} [lowerPropertyName] 数据库字段名(首字母小写)
|
|
|
* @param {string} [columnComment] 字段描述
|
|
|
* @param {string} [netType] .NET类型
|
|
|
* @param {string} [effectType] 作用类型(字典)
|
|
|
@@ -482,8 +504,8 @@ export const SysCodeGenConfigApiFp = function(configuration?: Configuration) {
|
|
|
* @param {*} [options] Override http request option.
|
|
|
* @throws {RequiredError}
|
|
|
*/
|
|
|
- async apiSysCodeGenConfigDetailGet(id?: number, codeGenId?: number, columnName?: string, lowerColumnName?: string, columnComment?: string, netType?: string, effectType?: string, fkEntityName?: string, fkTableName?: string, lowerFkEntityName?: string, fkColumnName?: string, lowerFkColumnName?: string, fkColumnNetType?: string, dictTypeCode?: string, whetherRetract?: string, whetherRequired?: string, queryWhether?: string, queryType?: string, whetherTable?: string, whetherAddUpdate?: string, columnKey?: string, dataType?: string, whetherCommon?: string, tableNickName?: string, displayColumn?: string, valueColumn?: string, pidColumn?: string, orderNo?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminResultSysCodeGenConfig>>> {
|
|
|
- const localVarAxiosArgs = await SysCodeGenConfigApiAxiosParamCreator(configuration).apiSysCodeGenConfigDetailGet(id, codeGenId, columnName, lowerColumnName, columnComment, netType, effectType, fkEntityName, fkTableName, lowerFkEntityName, fkColumnName, lowerFkColumnName, fkColumnNetType, dictTypeCode, whetherRetract, whetherRequired, queryWhether, queryType, whetherTable, whetherAddUpdate, columnKey, dataType, whetherCommon, tableNickName, displayColumn, valueColumn, pidColumn, orderNo, options);
|
|
|
+ async apiSysCodeGenConfigDetailGet(id?: number, codeGenId?: number, columnName?: string, propertyName?: string, columnLength?: number, lowerPropertyName?: string, columnComment?: string, netType?: string, effectType?: string, fkEntityName?: string, fkTableName?: string, lowerFkEntityName?: string, fkColumnName?: string, lowerFkColumnName?: string, fkColumnNetType?: string, dictTypeCode?: string, whetherRetract?: string, whetherRequired?: string, queryWhether?: string, queryType?: string, whetherTable?: string, whetherAddUpdate?: string, columnKey?: string, dataType?: string, whetherCommon?: string, tableNickName?: string, displayColumn?: string, valueColumn?: string, pidColumn?: string, orderNo?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminResultSysCodeGenConfig>>> {
|
|
|
+ const localVarAxiosArgs = await SysCodeGenConfigApiAxiosParamCreator(configuration).apiSysCodeGenConfigDetailGet(id, codeGenId, columnName, propertyName, columnLength, lowerPropertyName, columnComment, netType, effectType, fkEntityName, fkTableName, lowerFkEntityName, fkColumnName, lowerFkColumnName, fkColumnNetType, dictTypeCode, whetherRetract, whetherRequired, queryWhether, queryType, whetherTable, whetherAddUpdate, columnKey, dataType, whetherCommon, tableNickName, displayColumn, valueColumn, pidColumn, orderNo, options);
|
|
|
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
|
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
|
|
return axios.request(axiosRequestArgs);
|
|
|
@@ -495,7 +517,9 @@ export const SysCodeGenConfigApiFp = function(configuration?: Configuration) {
|
|
|
* @param {number} [id] 主键Id
|
|
|
* @param {number} [codeGenId] 代码生成主表ID
|
|
|
* @param {string} [columnName] 数据库字段名
|
|
|
- * @param {string} [lowerColumnName] 数据库字段名(首字母小写)
|
|
|
+ * @param {string} [propertyName] 实体属性名
|
|
|
+ * @param {number} [columnLength] 字段数据长度
|
|
|
+ * @param {string} [lowerPropertyName] 数据库字段名(首字母小写)
|
|
|
* @param {string} [columnComment] 字段描述
|
|
|
* @param {string} [netType] .NET类型
|
|
|
* @param {string} [effectType] 作用类型(字典)
|
|
|
@@ -523,8 +547,8 @@ export const SysCodeGenConfigApiFp = function(configuration?: Configuration) {
|
|
|
* @param {*} [options] Override http request option.
|
|
|
* @throws {RequiredError}
|
|
|
*/
|
|
|
- async apiSysCodeGenConfigListGet(id?: number, codeGenId?: number, columnName?: string, lowerColumnName?: string, columnComment?: string, netType?: string, effectType?: string, fkEntityName?: string, fkTableName?: string, lowerFkEntityName?: string, fkColumnName?: string, lowerFkColumnName?: string, fkColumnNetType?: string, dictTypeCode?: string, whetherRetract?: string, whetherRequired?: string, queryWhether?: string, queryType?: string, whetherTable?: string, whetherAddUpdate?: string, columnKey?: string, dataType?: string, whetherCommon?: string, tableNickName?: string, displayColumn?: string, valueColumn?: string, pidColumn?: string, orderNo?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminResultListCodeGenConfig>>> {
|
|
|
- const localVarAxiosArgs = await SysCodeGenConfigApiAxiosParamCreator(configuration).apiSysCodeGenConfigListGet(id, codeGenId, columnName, lowerColumnName, columnComment, netType, effectType, fkEntityName, fkTableName, lowerFkEntityName, fkColumnName, lowerFkColumnName, fkColumnNetType, dictTypeCode, whetherRetract, whetherRequired, queryWhether, queryType, whetherTable, whetherAddUpdate, columnKey, dataType, whetherCommon, tableNickName, displayColumn, valueColumn, pidColumn, orderNo, options);
|
|
|
+ async apiSysCodeGenConfigListGet(id?: number, codeGenId?: number, columnName?: string, propertyName?: string, columnLength?: number, lowerPropertyName?: string, columnComment?: string, netType?: string, effectType?: string, fkEntityName?: string, fkTableName?: string, lowerFkEntityName?: string, fkColumnName?: string, lowerFkColumnName?: string, fkColumnNetType?: string, dictTypeCode?: string, whetherRetract?: string, whetherRequired?: string, queryWhether?: string, queryType?: string, whetherTable?: string, whetherAddUpdate?: string, columnKey?: string, dataType?: string, whetherCommon?: string, tableNickName?: string, displayColumn?: string, valueColumn?: string, pidColumn?: string, orderNo?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => Promise<AxiosResponse<AdminResultListCodeGenConfig>>> {
|
|
|
+ const localVarAxiosArgs = await SysCodeGenConfigApiAxiosParamCreator(configuration).apiSysCodeGenConfigListGet(id, codeGenId, columnName, propertyName, columnLength, lowerPropertyName, columnComment, netType, effectType, fkEntityName, fkTableName, lowerFkEntityName, fkColumnName, lowerFkColumnName, fkColumnNetType, dictTypeCode, whetherRetract, whetherRequired, queryWhether, queryType, whetherTable, whetherAddUpdate, columnKey, dataType, whetherCommon, tableNickName, displayColumn, valueColumn, pidColumn, orderNo, options);
|
|
|
return (axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
|
const axiosRequestArgs :AxiosRequestConfig = {...localVarAxiosArgs.options, url: basePath + localVarAxiosArgs.url};
|
|
|
return axios.request(axiosRequestArgs);
|
|
|
@@ -559,7 +583,9 @@ export const SysCodeGenConfigApiFactory = function (configuration?: Configuratio
|
|
|
* @param {number} [id] 主键Id
|
|
|
* @param {number} [codeGenId] 代码生成主表ID
|
|
|
* @param {string} [columnName] 数据库字段名
|
|
|
- * @param {string} [lowerColumnName] 数据库字段名(首字母小写)
|
|
|
+ * @param {string} [propertyName] 实体属性名
|
|
|
+ * @param {number} [columnLength] 字段数据长度
|
|
|
+ * @param {string} [lowerPropertyName] 数据库字段名(首字母小写)
|
|
|
* @param {string} [columnComment] 字段描述
|
|
|
* @param {string} [netType] .NET类型
|
|
|
* @param {string} [effectType] 作用类型(字典)
|
|
|
@@ -587,8 +613,8 @@ export const SysCodeGenConfigApiFactory = function (configuration?: Configuratio
|
|
|
* @param {*} [options] Override http request option.
|
|
|
* @throws {RequiredError}
|
|
|
*/
|
|
|
- async apiSysCodeGenConfigDetailGet(id?: number, codeGenId?: number, columnName?: string, lowerColumnName?: string, columnComment?: string, netType?: string, effectType?: string, fkEntityName?: string, fkTableName?: string, lowerFkEntityName?: string, fkColumnName?: string, lowerFkColumnName?: string, fkColumnNetType?: string, dictTypeCode?: string, whetherRetract?: string, whetherRequired?: string, queryWhether?: string, queryType?: string, whetherTable?: string, whetherAddUpdate?: string, columnKey?: string, dataType?: string, whetherCommon?: string, tableNickName?: string, displayColumn?: string, valueColumn?: string, pidColumn?: string, orderNo?: number, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminResultSysCodeGenConfig>> {
|
|
|
- return SysCodeGenConfigApiFp(configuration).apiSysCodeGenConfigDetailGet(id, codeGenId, columnName, lowerColumnName, columnComment, netType, effectType, fkEntityName, fkTableName, lowerFkEntityName, fkColumnName, lowerFkColumnName, fkColumnNetType, dictTypeCode, whetherRetract, whetherRequired, queryWhether, queryType, whetherTable, whetherAddUpdate, columnKey, dataType, whetherCommon, tableNickName, displayColumn, valueColumn, pidColumn, orderNo, options).then((request) => request(axios, basePath));
|
|
|
+ async apiSysCodeGenConfigDetailGet(id?: number, codeGenId?: number, columnName?: string, propertyName?: string, columnLength?: number, lowerPropertyName?: string, columnComment?: string, netType?: string, effectType?: string, fkEntityName?: string, fkTableName?: string, lowerFkEntityName?: string, fkColumnName?: string, lowerFkColumnName?: string, fkColumnNetType?: string, dictTypeCode?: string, whetherRetract?: string, whetherRequired?: string, queryWhether?: string, queryType?: string, whetherTable?: string, whetherAddUpdate?: string, columnKey?: string, dataType?: string, whetherCommon?: string, tableNickName?: string, displayColumn?: string, valueColumn?: string, pidColumn?: string, orderNo?: number, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminResultSysCodeGenConfig>> {
|
|
|
+ return SysCodeGenConfigApiFp(configuration).apiSysCodeGenConfigDetailGet(id, codeGenId, columnName, propertyName, columnLength, lowerPropertyName, columnComment, netType, effectType, fkEntityName, fkTableName, lowerFkEntityName, fkColumnName, lowerFkColumnName, fkColumnNetType, dictTypeCode, whetherRetract, whetherRequired, queryWhether, queryType, whetherTable, whetherAddUpdate, columnKey, dataType, whetherCommon, tableNickName, displayColumn, valueColumn, pidColumn, orderNo, options).then((request) => request(axios, basePath));
|
|
|
},
|
|
|
/**
|
|
|
*
|
|
|
@@ -596,7 +622,9 @@ export const SysCodeGenConfigApiFactory = function (configuration?: Configuratio
|
|
|
* @param {number} [id] 主键Id
|
|
|
* @param {number} [codeGenId] 代码生成主表ID
|
|
|
* @param {string} [columnName] 数据库字段名
|
|
|
- * @param {string} [lowerColumnName] 数据库字段名(首字母小写)
|
|
|
+ * @param {string} [propertyName] 实体属性名
|
|
|
+ * @param {number} [columnLength] 字段数据长度
|
|
|
+ * @param {string} [lowerPropertyName] 数据库字段名(首字母小写)
|
|
|
* @param {string} [columnComment] 字段描述
|
|
|
* @param {string} [netType] .NET类型
|
|
|
* @param {string} [effectType] 作用类型(字典)
|
|
|
@@ -624,8 +652,8 @@ export const SysCodeGenConfigApiFactory = function (configuration?: Configuratio
|
|
|
* @param {*} [options] Override http request option.
|
|
|
* @throws {RequiredError}
|
|
|
*/
|
|
|
- async apiSysCodeGenConfigListGet(id?: number, codeGenId?: number, columnName?: string, lowerColumnName?: string, columnComment?: string, netType?: string, effectType?: string, fkEntityName?: string, fkTableName?: string, lowerFkEntityName?: string, fkColumnName?: string, lowerFkColumnName?: string, fkColumnNetType?: string, dictTypeCode?: string, whetherRetract?: string, whetherRequired?: string, queryWhether?: string, queryType?: string, whetherTable?: string, whetherAddUpdate?: string, columnKey?: string, dataType?: string, whetherCommon?: string, tableNickName?: string, displayColumn?: string, valueColumn?: string, pidColumn?: string, orderNo?: number, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminResultListCodeGenConfig>> {
|
|
|
- return SysCodeGenConfigApiFp(configuration).apiSysCodeGenConfigListGet(id, codeGenId, columnName, lowerColumnName, columnComment, netType, effectType, fkEntityName, fkTableName, lowerFkEntityName, fkColumnName, lowerFkColumnName, fkColumnNetType, dictTypeCode, whetherRetract, whetherRequired, queryWhether, queryType, whetherTable, whetherAddUpdate, columnKey, dataType, whetherCommon, tableNickName, displayColumn, valueColumn, pidColumn, orderNo, options).then((request) => request(axios, basePath));
|
|
|
+ async apiSysCodeGenConfigListGet(id?: number, codeGenId?: number, columnName?: string, propertyName?: string, columnLength?: number, lowerPropertyName?: string, columnComment?: string, netType?: string, effectType?: string, fkEntityName?: string, fkTableName?: string, lowerFkEntityName?: string, fkColumnName?: string, lowerFkColumnName?: string, fkColumnNetType?: string, dictTypeCode?: string, whetherRetract?: string, whetherRequired?: string, queryWhether?: string, queryType?: string, whetherTable?: string, whetherAddUpdate?: string, columnKey?: string, dataType?: string, whetherCommon?: string, tableNickName?: string, displayColumn?: string, valueColumn?: string, pidColumn?: string, orderNo?: number, options?: AxiosRequestConfig): Promise<AxiosResponse<AdminResultListCodeGenConfig>> {
|
|
|
+ return SysCodeGenConfigApiFp(configuration).apiSysCodeGenConfigListGet(id, codeGenId, columnName, propertyName, columnLength, lowerPropertyName, columnComment, netType, effectType, fkEntityName, fkTableName, lowerFkEntityName, fkColumnName, lowerFkColumnName, fkColumnNetType, dictTypeCode, whetherRetract, whetherRequired, queryWhether, queryType, whetherTable, whetherAddUpdate, columnKey, dataType, whetherCommon, tableNickName, displayColumn, valueColumn, pidColumn, orderNo, options).then((request) => request(axios, basePath));
|
|
|
},
|
|
|
/**
|
|
|
*
|
|
|
@@ -653,7 +681,9 @@ export class SysCodeGenConfigApi extends BaseAPI {
|
|
|
* @param {number} [id] 主键Id
|
|
|
* @param {number} [codeGenId] 代码生成主表ID
|
|
|
* @param {string} [columnName] 数据库字段名
|
|
|
- * @param {string} [lowerColumnName] 数据库字段名(首字母小写)
|
|
|
+ * @param {string} [propertyName] 实体属性名
|
|
|
+ * @param {number} [columnLength] 字段数据长度
|
|
|
+ * @param {string} [lowerPropertyName] 数据库字段名(首字母小写)
|
|
|
* @param {string} [columnComment] 字段描述
|
|
|
* @param {string} [netType] .NET类型
|
|
|
* @param {string} [effectType] 作用类型(字典)
|
|
|
@@ -682,8 +712,8 @@ export class SysCodeGenConfigApi extends BaseAPI {
|
|
|
* @throws {RequiredError}
|
|
|
* @memberof SysCodeGenConfigApi
|
|
|
*/
|
|
|
- public async apiSysCodeGenConfigDetailGet(id?: number, codeGenId?: number, columnName?: string, lowerColumnName?: string, columnComment?: string, netType?: string, effectType?: string, fkEntityName?: string, fkTableName?: string, lowerFkEntityName?: string, fkColumnName?: string, lowerFkColumnName?: string, fkColumnNetType?: string, dictTypeCode?: string, whetherRetract?: string, whetherRequired?: string, queryWhether?: string, queryType?: string, whetherTable?: string, whetherAddUpdate?: string, columnKey?: string, dataType?: string, whetherCommon?: string, tableNickName?: string, displayColumn?: string, valueColumn?: string, pidColumn?: string, orderNo?: number, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminResultSysCodeGenConfig>> {
|
|
|
- return SysCodeGenConfigApiFp(this.configuration).apiSysCodeGenConfigDetailGet(id, codeGenId, columnName, lowerColumnName, columnComment, netType, effectType, fkEntityName, fkTableName, lowerFkEntityName, fkColumnName, lowerFkColumnName, fkColumnNetType, dictTypeCode, whetherRetract, whetherRequired, queryWhether, queryType, whetherTable, whetherAddUpdate, columnKey, dataType, whetherCommon, tableNickName, displayColumn, valueColumn, pidColumn, orderNo, options).then((request) => request(this.axios, this.basePath));
|
|
|
+ public async apiSysCodeGenConfigDetailGet(id?: number, codeGenId?: number, columnName?: string, propertyName?: string, columnLength?: number, lowerPropertyName?: string, columnComment?: string, netType?: string, effectType?: string, fkEntityName?: string, fkTableName?: string, lowerFkEntityName?: string, fkColumnName?: string, lowerFkColumnName?: string, fkColumnNetType?: string, dictTypeCode?: string, whetherRetract?: string, whetherRequired?: string, queryWhether?: string, queryType?: string, whetherTable?: string, whetherAddUpdate?: string, columnKey?: string, dataType?: string, whetherCommon?: string, tableNickName?: string, displayColumn?: string, valueColumn?: string, pidColumn?: string, orderNo?: number, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminResultSysCodeGenConfig>> {
|
|
|
+ return SysCodeGenConfigApiFp(this.configuration).apiSysCodeGenConfigDetailGet(id, codeGenId, columnName, propertyName, columnLength, lowerPropertyName, columnComment, netType, effectType, fkEntityName, fkTableName, lowerFkEntityName, fkColumnName, lowerFkColumnName, fkColumnNetType, dictTypeCode, whetherRetract, whetherRequired, queryWhether, queryType, whetherTable, whetherAddUpdate, columnKey, dataType, whetherCommon, tableNickName, displayColumn, valueColumn, pidColumn, orderNo, options).then((request) => request(this.axios, this.basePath));
|
|
|
}
|
|
|
/**
|
|
|
*
|
|
|
@@ -691,7 +721,9 @@ export class SysCodeGenConfigApi extends BaseAPI {
|
|
|
* @param {number} [id] 主键Id
|
|
|
* @param {number} [codeGenId] 代码生成主表ID
|
|
|
* @param {string} [columnName] 数据库字段名
|
|
|
- * @param {string} [lowerColumnName] 数据库字段名(首字母小写)
|
|
|
+ * @param {string} [propertyName] 实体属性名
|
|
|
+ * @param {number} [columnLength] 字段数据长度
|
|
|
+ * @param {string} [lowerPropertyName] 数据库字段名(首字母小写)
|
|
|
* @param {string} [columnComment] 字段描述
|
|
|
* @param {string} [netType] .NET类型
|
|
|
* @param {string} [effectType] 作用类型(字典)
|
|
|
@@ -720,8 +752,8 @@ export class SysCodeGenConfigApi extends BaseAPI {
|
|
|
* @throws {RequiredError}
|
|
|
* @memberof SysCodeGenConfigApi
|
|
|
*/
|
|
|
- public async apiSysCodeGenConfigListGet(id?: number, codeGenId?: number, columnName?: string, lowerColumnName?: string, columnComment?: string, netType?: string, effectType?: string, fkEntityName?: string, fkTableName?: string, lowerFkEntityName?: string, fkColumnName?: string, lowerFkColumnName?: string, fkColumnNetType?: string, dictTypeCode?: string, whetherRetract?: string, whetherRequired?: string, queryWhether?: string, queryType?: string, whetherTable?: string, whetherAddUpdate?: string, columnKey?: string, dataType?: string, whetherCommon?: string, tableNickName?: string, displayColumn?: string, valueColumn?: string, pidColumn?: string, orderNo?: number, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminResultListCodeGenConfig>> {
|
|
|
- return SysCodeGenConfigApiFp(this.configuration).apiSysCodeGenConfigListGet(id, codeGenId, columnName, lowerColumnName, columnComment, netType, effectType, fkEntityName, fkTableName, lowerFkEntityName, fkColumnName, lowerFkColumnName, fkColumnNetType, dictTypeCode, whetherRetract, whetherRequired, queryWhether, queryType, whetherTable, whetherAddUpdate, columnKey, dataType, whetherCommon, tableNickName, displayColumn, valueColumn, pidColumn, orderNo, options).then((request) => request(this.axios, this.basePath));
|
|
|
+ public async apiSysCodeGenConfigListGet(id?: number, codeGenId?: number, columnName?: string, propertyName?: string, columnLength?: number, lowerPropertyName?: string, columnComment?: string, netType?: string, effectType?: string, fkEntityName?: string, fkTableName?: string, lowerFkEntityName?: string, fkColumnName?: string, lowerFkColumnName?: string, fkColumnNetType?: string, dictTypeCode?: string, whetherRetract?: string, whetherRequired?: string, queryWhether?: string, queryType?: string, whetherTable?: string, whetherAddUpdate?: string, columnKey?: string, dataType?: string, whetherCommon?: string, tableNickName?: string, displayColumn?: string, valueColumn?: string, pidColumn?: string, orderNo?: number, options?: AxiosRequestConfig) : Promise<AxiosResponse<AdminResultListCodeGenConfig>> {
|
|
|
+ return SysCodeGenConfigApiFp(this.configuration).apiSysCodeGenConfigListGet(id, codeGenId, columnName, propertyName, columnLength, lowerPropertyName, columnComment, netType, effectType, fkEntityName, fkTableName, lowerFkEntityName, fkColumnName, lowerFkColumnName, fkColumnNetType, dictTypeCode, whetherRetract, whetherRequired, queryWhether, queryType, whetherTable, whetherAddUpdate, columnKey, dataType, whetherCommon, tableNickName, displayColumn, valueColumn, pidColumn, orderNo, options).then((request) => request(this.axios, this.basePath));
|
|
|
}
|
|
|
/**
|
|
|
*
|