+ThingMap

+OnxxThing
This commit is contained in:
gazebo
2019-12-04 10:57:31 +08:00
parent f69173bd2e
commit 2635fb035a
5 changed files with 128 additions and 76 deletions

View File

@@ -715,3 +715,15 @@ func GetTimeMixByInt(begin1, end1, begin2, end2 int16) (beginAt, endAt int16) {
}
return beginAt, endAt
}
func OnCreateThing(db *dao.DaoDB, thingID int64, thingType int8) (err error) {
return err
}
func OnUpdateThing(db *dao.DaoDB, thingID int64, thingType int8) (err error) {
return err
}
func OnDeleteThing(db *dao.DaoDB, thingID int64, thingType int8) (err error) {
return err
}