ntk-cms-api
Version:
Ntk Cms Api And Model For Typscript
47 lines (46 loc) • 1.7 kB
TypeScript
import { BaseModuleEntity } from '../base/baseModuleEntity';
import { ArticleCategoryModel } from './articleCategoryModel';
import { ArticleCommentModel } from './articleCommentModel';
import { ArticleContentCategoryModel } from './articleContentCategoryModel';
import { ArticleContentSimilarModel } from './articleContentSimilarModel';
import { ArticleContentTagModel } from './articleContentTagModel';
export declare class ArticleContentModel extends BaseModuleEntity<number> {
linkCategoryId: number;
title: string;
description: string;
body: string;
fromDate: Date;
geolocationlatitude?: number;
geolocationlongitude?: number;
linkLocationId?: number;
linkLocationIdTitle: string;
linkLocationIdParentTitle: string;
keyword: string;
linkFileIds: string;
linkFilePodcastId?: number;
linkFileMovieId?: number;
linkMainImageId?: number;
scoreClick: number;
scoreSumPercent: number;
viewCount: number;
favorited: boolean;
expireDate: Date;
moduleCoreCreatedBy: string;
moduleCoreUpdatedBy: string;
source: string;
comments: ArticleCommentModel;
virtual_Category: ArticleCategoryModel;
category: ArticleCategoryModel;
contentTags: ArticleContentTagModel[];
similars: ArticleContentSimilarModel[];
contentCategores: ArticleContentCategoryModel[];
otherInfos: string;
contentAndParameterValues: any;
linkMainImageIdSrc: string;
linkFilePodcastIdSrc: string;
linkFileMovieIdSrc: string;
linkFileIdsSrc: string[];
urlViewContent: string;
urlViewContentShort: string;
urlViewContentQRCodeBase64: string;
}