SubTableIsContainValue.js 254 Bytes
Newer Older
wangcong committed
1 2 3 4 5 6 7 8 9 10
// 子表中的某个字段是否等于某个值
export default {
    execute:function(){
        console.log("子表中的某个字段是否等于某个值");
      
    },
    getResultType:function(){
        return FMR.ConstDataTypes.General;
    }
}