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.
15 lines
358 B
C#
15 lines
358 B
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using DS.WMS.Core.TaskPlat.Interface;
|
|
|
|
namespace DS.WMS.Core.TaskPlat.Method
|
|
{
|
|
public class MyModuleTest3 : IMyModuleTest3
|
|
{
|
|
public Task<DataResult> TestMethod31(TaskFlowDataContext dataContext)
|
|
{
|
|
throw new Exception("TestMethod31内的测试异常");
|
|
}
|
|
}
|
|
}
|