dcCleanQualityModel.go 655 B

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