cronWork.go 186 B

1234567891011
  1. package example
  2. import (
  3. "server/dao"
  4. "server/global"
  5. )
  6. func CreateProjectFeeSum() {
  7. err := dao.CreateProjectMonthFee()
  8. global.GVA_LOG.Error("CreateProjectFeeSum" + err.Error())
  9. }