generate.go 431 B

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