feat: contact

master
howell 3 years ago
parent c10fed2801
commit e14870cb87

@ -244,3 +244,12 @@ func (o Proxy) RecordInfo(c *gin.Context) {
Total: int(total),
})
}
func (o Proxy) ContactFix(c *gin.Context) {
back.Suc(c, "ok", gin.H{
"name": "周杰琼",
"mobile": "15988645436",
"address": "浙江省宁波市高新区菁华路108号德邦大厦4楼沙马集团",
"email": "31367542121@qq.com",
})
}

@ -301,6 +301,7 @@ func routerApp(appRouter *gin.RouterGroup) {
companyController.POST("deposit", proxy.CompanyDespoit) // 充值
companyController.POST("deposit/list", proxy.DespoitInfo) // 充值列表
companyController.POST("record/list", proxy.RecordInfo) // 钱包记录
companyController.POST("contact", proxy.ContactFix)
}
}

Loading…
Cancel
Save