123456789101112131415161718 |
- using CZFW.Framework.Model.ViewModel;
- using MongoDB.Bson;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CZFW.MDB.Interface
- {
- public interface ICMSCategory
- {
- //获取模板的基础分类数据源
- BsonArray GetTplCategorySrc(string tplName);
- //同步模板的分类原始数据到网站。用于在网站建立后,又在模板修改了分类。需要将分类基础数据同步过来。
- ResultModel SyncTplCategorySource(string tplName, string sid);
- }
- }
|