import { IPSModelObject } from '../ipsmodel-object'; /** * * 子接口类型识别属性[] * @export * @interface IPSSysCss */ export interface IPSSysCss extends IPSModelObject { /** * 代码标识 * @type {string} */ codeName: string; /** * 样式名称 * @type {string} */ cssName: string; /** * 直接样式内容 * @type {string} */ cssStyle: string; /** * 配置样式内容 * @type {string} */ designCssStyle: string; }