This commit is contained in:
2026-01-12 16:43:08 +08:00
parent dc747139c9
commit 3c6e2683f5
110 changed files with 9630 additions and 481 deletions

View File

@@ -0,0 +1,27 @@
package model
import (
"github.com/zeromicro/go-zero/core/stores/cache"
"github.com/zeromicro/go-zero/core/stores/sqlx"
)
var _ ComplaintAlipayModel = (*customComplaintAlipayModel)(nil)
type (
// ComplaintAlipayModel is an interface to be customized, add more methods here,
// and implement the added methods in customComplaintAlipayModel.
ComplaintAlipayModel interface {
complaintAlipayModel
}
customComplaintAlipayModel struct {
*defaultComplaintAlipayModel
}
)
// NewComplaintAlipayModel returns a model for the database table.
func NewComplaintAlipayModel(conn sqlx.SqlConn, c cache.CacheConf) ComplaintAlipayModel {
return &customComplaintAlipayModel{
defaultComplaintAlipayModel: newComplaintAlipayModel(conn, c),
}
}