You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
463 B
C#
19 lines
463 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Mesnac.Action.Base;
|
|
using Mesnac.Action.Feeding.BasicInfo;
|
|
|
|
namespace Mesnac.Action.Feeding.ProducingPlan
|
|
{
|
|
public class TestAction : FeedingAction, IAction
|
|
{
|
|
public void Run(RuntimeParameter runtime)
|
|
{
|
|
ICSharpCode.Core.LoggingService.Debug("业务测试...");
|
|
//Mesnac.Equips.Factory.Instance.Read();
|
|
}
|
|
}
|
|
}
|