task.go 224 B

12345678910111213
  1. package init_serve
  2. import (
  3. "fmt"
  4. )
  5. func InitTask() {
  6. // TODO:执行一次
  7. fmt.Println("task start")
  8. //fmsService.FixContractInvoiceSellerInfo()
  9. //fmsService.FixContractInvoicePaymentType()
  10. fmt.Println("task end")
  11. }