mh_custom/wtmProject.ViewModel/_Admin/ActionLogVMs/ActionLogBatchVM.cs
2024-05-17 13:43:36 +08:00

27 lines
506 B
C#

// WTM默认页面 Wtm buidin page
using System;
using WalkingTec.Mvvm.Core;
namespace WalkingTec.Mvvm.Mvc.Admin.ViewModels.ActionLogVMs
{
public class ActionLogBatchVM : BaseBatchVM<ActionLog, ActionLog_BatchEdit>
{
public ActionLogBatchVM()
{
ListVM = new ActionLogListVM();
LinkedVM = new ActionLog_BatchEdit();
}
}
public class ActionLog_BatchEdit : BaseVM
{
protected override void InitVM()
{
}
}
}