This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
const watchers = [
{
name: '当settlePlan达到结算时间时,结算settlePlan',
entity: 'settlePlan',
filter: () => {
const now = Date.now();
return {
iState: 'unsettled',
when: {
$lte: now,
},
};
action: 'settle',
actionData: {},
}
];
export default watchers;