import { IPSDELogicNode } from './ipsdelogic-node'; import { IPSDELogicParam } from './ipsdelogic-param'; /** * * 继承父接口类型值[SORTPARAM] * @export * @interface IPSDESortParamLogic */ export interface IPSDESortParamLogic extends IPSDELogicNode { /** * 目标排序属性 * @type {string} */ dstFieldName: string; /** * 目标逻辑参数对象 * * @type {IPSDELogicParam} */ getDstPSDELogicParam(): IPSDELogicParam | null; /** * 目标逻辑参数对象 * * @type {IPSDELogicParam} */ get dstPSDELogicParam(): IPSDELogicParam | null; /** * 目标逻辑参数对象(必须存在) * * @type {IPSDELogicParam} */ getDstPSDELogicParamMust(): IPSDELogicParam; /** * 目标列表排序模式 * @description 值模式 [表格排序模式] {REMOTE:远程排序、 LOCAL:本地排序 } * @type {( string | 'REMOTE' | 'LOCAL')} */ dstSortDir: string | 'REMOTE' | 'LOCAL'; }