MaterialService.go 396 字节
Newer Older
M
monomania 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
package service

import (
	"github.com/chanxuehong/wechat/mp/core"
)

type MaterialService struct {
	MatchService
}


func (this *MaterialService) ModifyNews(wcClient *core.Client){
	this.MatchService.ModifyToday(wcClient)
M
monomania 已提交
14 15
	this.MatchService.ModifyTodayDetail(wcClient)
	this.MatchService.ModifyTodayTbs(wcClient)
M
monomania 已提交
16 17 18
	this.MatchService.ModifyWeek(wcClient)
	this.MatchService.ModifyMonth(wcClient)
}