package routers import ( "Yunlot/controllers" beego "github.com/beego/beego/v2/server/web" ) func init() { prefix := "/Product" // 产品协议 beego.Router(prefix+"/ProductProt/Get", &controllers.ProductProtController{}, "*:Get") // 获取未读消息 beego.Router(prefix+"/ProductProt/Download", &controllers.ProductProtController{}, "*:Download") // 获取未读消息 beego.Router(prefix+"/ProductProt/List", &controllers.ProductProtController{}, "*:List") // 获取未读消息 //beego.Router(prefix+"/ProductProtPublic/List", &controllers.ProductProtController{}, "*:PublicList") // 获取未读消息 beego.Router(prefix+"/ProductProt/Update", &controllers.ProductProtController{}, "*:Update") // 获取未读消息 beego.Router(prefix+"/ProductProt/Delete", &controllers.ProductProtController{}, "*:Delete") // 获取未读消息 beego.Router(prefix+"/ProductMode/List", &controllers.ProductProtController{}, "*:ProductModeLists") // 获取未读消息 beego.Router(prefix+"/ProductLang/List", &controllers.ProductProtController{}, "*:ProductLangList") // 获取未读消息 }