feat(app): 初始化项目配置和页面结构
- 添加 .dockerignore 和 .env.example 配置文件 - 添加 .gitignore 忽略规则配置 - 创建服务端代理API路由(_file、_modules、_server) - 集成 Ant Design Vue 组件库并配置SSR样式提取 - 定义API响应类型封装 - 创建基础布局组件(blank、console) - 实现应用中心页面和组件(AppsCenter) - 添加文章列表测试页面 - 配置控制台导航菜单结构 - 实现控制台头部组件 - 创建联系页面表单
This commit is contained in:
63
app/api/credit/creditExternal/model/index.ts
Normal file
63
app/api/credit/creditExternal/model/index.ts
Normal file
@@ -0,0 +1,63 @@
|
||||
import type { PageParam } from '@/api';
|
||||
|
||||
/**
|
||||
* 对外投资
|
||||
*/
|
||||
export interface CreditExternal {
|
||||
// ID
|
||||
id?: number;
|
||||
// 被投资企业名称
|
||||
name?: string;
|
||||
// 企业状态(如存续、注销等)
|
||||
statusTxt?: string;
|
||||
// 法定代表人姓名
|
||||
legalRepresentative?: string;
|
||||
// 注册资本(金额)
|
||||
registeredCapital?: string;
|
||||
// 成立日期
|
||||
establishmentDate?: string;
|
||||
// 持股比例
|
||||
shareholdingRatio?: string;
|
||||
// 认缴出资额
|
||||
subscribedInvestmentAmount?: string;
|
||||
// 认缴出资日期
|
||||
subscribedInvestmentDate?: string;
|
||||
// 间接持股比例
|
||||
indirectShareholdingRatio?: string;
|
||||
// 投资日期
|
||||
investmentDate?: string;
|
||||
// 所属地区
|
||||
region?: string;
|
||||
// 所属行业
|
||||
industry?: string;
|
||||
// 投资数量
|
||||
investmentCount?: number;
|
||||
// 关联产品/机构
|
||||
relatedProductsInstitutions?: string;
|
||||
// 备注
|
||||
comments?: string;
|
||||
// 是否推荐
|
||||
recommend?: number;
|
||||
// 排序(数字越小越靠前)
|
||||
sortNumber?: number;
|
||||
// 状态, 0正常, 1冻结
|
||||
status?: number;
|
||||
// 是否删除, 0否, 1是
|
||||
deleted?: number;
|
||||
// 用户ID
|
||||
userId?: number;
|
||||
// 租户id
|
||||
tenantId?: number;
|
||||
// 创建时间
|
||||
createTime?: string;
|
||||
// 修改时间
|
||||
updateTime?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* 对外投资搜索条件
|
||||
*/
|
||||
export interface CreditExternalParam extends PageParam {
|
||||
id?: number;
|
||||
keywords?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user