import { IPSModelObject } from '../ipsmodel-object'; /** * * 子接口类型识别属性[] * @export * @interface IPSSysContent */ export interface IPSSysContent extends IPSModelObject { /** * 代码标识 * @type {string} */ codeName: string; /** * 内容标记2 * @type {string} */ contenTag2: string; /** * 内容 * @type {string} */ content: string; /** * 内容标记 * @type {string} */ contentTag: string; /** * 内容标记3 * @type {string} */ contentTag3: string; /** * 内容标记4 * @type {string} */ contentTag4: string; /** * 内容类型 * @description 值模式 [系统内容类型] {RAW:直接内容、 HTML:Html内容 } * @type {( string | 'RAW' | 'HTML')} */ contentType: string | 'RAW' | 'HTML'; }