fix: 更新提交
This commit is contained in:
@@ -1,9 +1,17 @@
|
||||
/**
|
||||
* 自动生成的Bean类型定义
|
||||
* 请勿手动修改此文件
|
||||
* 生成时间: 2025-10-13T13:51:42.231Z
|
||||
*/
|
||||
|
||||
import { ConfigParseUtils } from "./ConfigParseUtils";
|
||||
|
||||
// 没有找到Bean定义
|
||||
/** Bean: Beans */
|
||||
export interface Beans {
|
||||
ClassName: string;
|
||||
FieldName: string;
|
||||
FieldType: string;
|
||||
Comment: string;
|
||||
}
|
||||
export function parseBeans(data: any): Beans {
|
||||
return {
|
||||
ClassName: ConfigParseUtils.parseString(data.ClassName),
|
||||
FieldName: ConfigParseUtils.parseString(data.FieldName),
|
||||
FieldType: ConfigParseUtils.parseString(data.FieldType),
|
||||
Comment: ConfigParseUtils.parseString(data.Comment),
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user