/** * 清空子表数据 * @author raojiaguan * @data 2022年3月25日11:47:28 */
export default { execute: function () { if (arguments && arguments[0] && arguments[1]) { let context = arguments[1] let tableName = arguments[0][0].StaticValue
context.clearSubDatas(tableName)
} }, getResultType: function () { return FMR.ConstDataTypes.General; } }