- 在多个信用模型中添加 url 字段定义,包括信用违约、立案、公司、竞争对手等 - 修复法院公告模型中的字段命名错误,将 defendant appellee 改为 appellee - 在前端页面中实现链接地址的展示功能,为名称字段添加外链支持 - 优化页面布局结构,调整部分组件的缩进格式 - 修复时间格式化函数的换行问题,提升代码可读性 - 统一表格列宽度设置,优化页面显示效果
58 lines
1.1 KiB
TypeScript
58 lines
1.1 KiB
TypeScript
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 送达公告司法大数据
|
|
*/
|
|
export interface CreditDeliveryNotice {
|
|
// ID
|
|
id?: number;
|
|
// 数据类型
|
|
dataType?: string;
|
|
// 原告/上诉人
|
|
plaintiffAppellant?: string;
|
|
// 被告/被上诉人
|
|
appellee?: string;
|
|
// 其他当事人/第三人
|
|
otherPartiesThirdParty?: string;
|
|
// 发生时间
|
|
occurrenceTime?: string;
|
|
// 案号
|
|
caseNumber?: string;
|
|
// 案由
|
|
causeOfAction?: string;
|
|
// 涉案金额
|
|
involvedAmount?: string;
|
|
// 法院
|
|
courtName?: string;
|
|
// 数据状态
|
|
dataStatus?: string;
|
|
// 链接地址
|
|
url?: 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 CreditDeliveryNoticeParam extends PageParam {
|
|
id?: number;
|
|
keywords?: string;
|
|
}
|