广告平台(总站长使用)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
215 B

  1. package dao
  2. import (
  3. "applet/app/db/model"
  4. )
  5. type MediumDomainDao interface {
  6. GetMediumDomain(mediumId int) (medium *model.MediumDomain, err error)
  7. MediumDomainInsert(m *model.MediumDomain) (int64, error)
  8. }