@@ -123,6 +123,7 @@ export enum CptModelName {
rations = 'rations',
rationGljs = 'rationGljs',
shareList = 'shareList',
+ shareLink = 'shareLink',
unitPriceFile = 'unitPriceFile',
feeRateFile = 'feeRateFile',
labourCoeFile = 'labourCoeFile',
@@ -82,3 +82,21 @@ export interface IPreparePopup {
history: IShareHistory[];
recentContacts: IRecentUser[];
}
+
+// 分享链接
+export interface IShareLink {
+ // 链接ID
+ ID: string;
+ // 是否需要密码
+ needPassword: boolean;
+ // 密码
+ password?: string;
+ // 分享的项目ID
+ projectID: string;
+ // 项目所属费用定额ID
+ compilationID: string;
+ // 创建链接的人ID
+ creator: string;
+ // 分享时间
+ shareDate: number;
+}