- // Copyright 2021 getensh.com. All rights reserved.
- // Use of this source code is governed by getensh.com.
- package overdue
- import "property-task/impl/v1/common"
- // 定时生成滞纳金
- func GenerateOverdue(){
- // 获取小区列表
- common.GetGardenList()
- // 查询小区费项表,获取滞纳金信息
- // 获取待缴订单关联费项表(费项表滞纳金开启)
- // 根据规则计算滞纳金
- // 更新滞纳金
- }
|