MaterialService.go 578 字节
Newer Older
M
monomania 已提交
1 2 3 4 5 6 7
package service

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

type MaterialService struct {
M
monomania 已提交
8 9 10
	SuggestTodayService
	SuggestWeekService
	SuggestMonthService
M
monomania 已提交
11 12
}

M
monomania 已提交
13 14
func (this *MaterialService) ModifyNews(wcClient *core.Client) {
	this.SuggestTodayService.ModifyTodayTbs(wcClient)
M
monomania 已提交
15 16
	this.SuggestTodayService.ModifyTodayA1(wcClient)
	this.SuggestTodayService.ModifyTodayC1(wcClient)
S
shi.zeyuan 已提交
17
	this.SuggestTodayService.ModifyToday(wcClient)
M
monomania 已提交
18
	this.SuggestTodayService.ModifyTodayGuts(wcClient)
M
monomania 已提交
19

M
monomania 已提交
20 21 22
	this.SuggestWeekService.ModifyWeek(wcClient)
	this.SuggestMonthService.ModifyMonth(wcClient)
}