17 lines
417 B
Go
17 lines
417 B
Go
package dao
|
|
|
|
import (
|
|
"git.rosy.net.cn/jx-callback/business/model"
|
|
"time"
|
|
)
|
|
|
|
func GetSimFlowExpend(db *DaoDB, iccid string, createdAtBegin, createdAtEnd time.Time) (simFlowExpnd []*model.SimFlowExpend, err error) {
|
|
|
|
return simFlowExpnd, err
|
|
}
|
|
|
|
func GetSimFlowExpendSum(db *DaoDB, iccid string, createdAtBegin, createdAtEnd time.Time) (simFlowExpnd []*model.SimFlowExpend, err error) {
|
|
|
|
return simFlowExpnd, err
|
|
}
|