You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

scnodephyinfomodel.go 749 B

123456789101112131415161718192021222324252627
  1. package model
  2. import (
  3. "github.com/zeromicro/go-zero/core/stores/cache"
  4. "github.com/zeromicro/go-zero/core/stores/sqlx"
  5. )
  6. var _ ScNodePhyInfoModel = (*customScNodePhyInfoModel)(nil)
  7. type (
  8. // ScNodePhyInfoModel is an interface to be customized, add more methods here,
  9. // and implement the added methods in customScNodePhyInfoModel.
  10. ScNodePhyInfoModel interface {
  11. scNodePhyInfoModel
  12. }
  13. customScNodePhyInfoModel struct {
  14. *defaultScNodePhyInfoModel
  15. }
  16. )
  17. // NewScNodePhyInfoModel returns a model for the database table.
  18. func NewScNodePhyInfoModel(conn sqlx.SqlConn, c cache.CacheConf, opts ...cache.Option) ScNodePhyInfoModel {
  19. return &customScNodePhyInfoModel{
  20. defaultScNodePhyInfoModel: newScNodePhyInfoModel(conn, c, opts...),
  21. }
  22. }

PCM is positioned as Software stack over Cloud, aiming to build the standards and ecology of heterogeneous cloud collaboration for JCC in a non intrusive and autonomous peer-to-peer manner.