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.

tclustertaskqueuemodel.go 698 B

123456789101112131415161718192021222324
  1. package models
  2. import "github.com/zeromicro/go-zero/core/stores/sqlx"
  3. var _ TClusterTaskQueueModel = (*customTClusterTaskQueueModel)(nil)
  4. type (
  5. // TClusterTaskQueueModel is an interface to be customized, add more methods here,
  6. // and implement the added methods in customTClusterTaskQueueModel.
  7. TClusterTaskQueueModel interface {
  8. tClusterTaskQueueModel
  9. }
  10. customTClusterTaskQueueModel struct {
  11. *defaultTClusterTaskQueueModel
  12. }
  13. )
  14. // NewTClusterTaskQueueModel returns a model for the database table.
  15. func NewTClusterTaskQueueModel(conn sqlx.SqlConn) TClusterTaskQueueModel {
  16. return &customTClusterTaskQueueModel{
  17. defaultTClusterTaskQueueModel: newTClusterTaskQueueModel(conn),
  18. }
  19. }

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.