|
|
@@ -0,0 +1,16 @@
|
|
|
+package oilpatentstatistical
|
|
|
+
|
|
|
+import (
|
|
|
+ . "dashoo.cn/backend/api/mydb"
|
|
|
+ "github.com/go-xorm/xorm"
|
|
|
+)
|
|
|
+
|
|
|
+type OilPatentStatisticalService struct {
|
|
|
+ MyServiceBase
|
|
|
+}
|
|
|
+
|
|
|
+func GetOilPatentStatisticalService(xormEngine *xorm.Engine) *OilPatentStatisticalService {
|
|
|
+ s := new(OilPatentStatisticalService)
|
|
|
+ s.DBE = xormEngine
|
|
|
+ return s
|
|
|
+}
|