fusenapi/model/fsproductdesignmodel.go
laodaming d455f3b256 fix
2023-06-13 12:15:06 +08:00

25 lines
669 B
Go
Executable File

package model
import "github.com/zeromicro/go-zero/core/stores/sqlx"
var _ FsProductDesignModel = (*customFsProductDesignModel)(nil)
type (
// FsProductDesignModel is an interface to be customized, add more methods here,
// and implement the added methods in customFsProductDesignModel.
FsProductDesignModel interface {
fsProductDesignModel
}
customFsProductDesignModel struct {
*defaultFsProductDesignModel
}
)
// NewFsProductDesignModel returns a model for the database table.
func NewFsProductDesignModel(conn sqlx.SqlConn) FsProductDesignModel {
return &customFsProductDesignModel{
defaultFsProductDesignModel: newFsProductDesignModel(conn),
}
}