You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
911 B
51 lines
911 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 代码仓库
|
|
*/
|
|
export interface OaAssetsCode {
|
|
// ID
|
|
id?: number;
|
|
// 名称
|
|
name?: string;
|
|
// 英文标识
|
|
code?: string;
|
|
// 仓库地址
|
|
gitUrl?: string;
|
|
// 仓库品牌
|
|
brand?: string;
|
|
// 价格
|
|
price?: number;
|
|
// 详情内容
|
|
content?: string;
|
|
// 购买时间
|
|
startTime?: string;
|
|
// 到期时间
|
|
endTime?: string;
|
|
// 置顶状态
|
|
isTop?: string;
|
|
// 排序(数字越小越靠前)
|
|
sortNumber?: number;
|
|
// 描述
|
|
comments?: string;
|
|
// 用户ID
|
|
userId?: number;
|
|
// 状态, 0正常, 1冻结
|
|
status?: string;
|
|
// 是否删除, 0否, 1是
|
|
deleted?: number;
|
|
// 租户id
|
|
tenantId?: number;
|
|
// 创建时间
|
|
createTime?: string;
|
|
// 修改时间
|
|
updateTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 代码仓库搜索条件
|
|
*/
|
|
export interface OaAssetsCodeParam extends PageParam {
|
|
id?: number;
|
|
keywords?: string;
|
|
}
|