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.

aiinferdeployinstancemodel.go 754 B

123456789101112131415161718192021222324
  1. package models
  2. import "github.com/zeromicro/go-zero/core/stores/sqlx"
  3. var _ AiInferDeployInstanceModel = (*customAiInferDeployInstanceModel)(nil)
  4. type (
  5. // AiInferDeployInstanceModel is an interface to be customized, add more methods here,
  6. // and implement the added methods in customAiInferDeployInstanceModel.
  7. AiInferDeployInstanceModel interface {
  8. aiInferDeployInstanceModel
  9. }
  10. customAiInferDeployInstanceModel struct {
  11. *defaultAiInferDeployInstanceModel
  12. }
  13. )
  14. // NewAiInferDeployInstanceModel returns a model for the database table.
  15. func NewAiInferDeployInstanceModel(conn sqlx.SqlConn) AiInferDeployInstanceModel {
  16. return &customAiInferDeployInstanceModel{
  17. defaultAiInferDeployInstanceModel: newAiInferDeployInstanceModel(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.