import { IPSListItem } from './ipslist-item'; import { IPSDEUIActionGroup } from '../../dataentity/uiaction/ipsdeuiaction-group'; /** * * 子接口类型识别属性[] * @export * @interface IPSDEListItem */ export interface IPSDEListItem extends IPSListItem { /** * 数据项名称 * @type {string} */ dataItemName: string; /** * 界面行为组 * * @type {IPSDEUIActionGroup} */ getPSDEUIActionGroup(): IPSDEUIActionGroup | null; /** * 界面行为组 * * @type {IPSDEUIActionGroup} */ get psDEUIActionGroup(): IPSDEUIActionGroup | null; /** * 界面行为组(必须存在) * * @type {IPSDEUIActionGroup} */ getPSDEUIActionGroupMust(): IPSDEUIActionGroup; /** * 值格式化 * @type {string} */ valueFormat: string; /** * 宽度 * @type {number} */ width: number; }