ImportMethod_WorkOrder.cs
1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using Hh.Mes.POJO.Response;
using System;
using System.Collections.Generic;
using static Hh.Mes.Common.Exel.NpoiExcelImportHelper;
namespace Hh.Mes.Service.WebService.Planned
{
/// <summary>
/// 定义导入方法加上特性
/// dicDtSource 添加需要保存到数据源的数据源
/// 注意:只改对应业务的dt 数据【公共方法里面的读取的数据源不要修改、其他地方可能需要用到】
/// </summary>
public partial class ImportMethod
{
#region 工序任务表 【Action里面的 bus_workOrder_head 】 是数据库表名 ,方法名没有特殊要求 ,注意不要删除sysDicDtSource里面的key
[Action("bus_workOrder_head")]
public Response BusWorkOrderHeadMethod(Dictionary<string, SysDtAllCls> sysDicDtSource, dynamic user, DateTime nowTime)
{
return null;
}
#endregion
#region Save BusWorkOrder Success After
/// <summary>
/// 工序任务表保存之后
/// </summary>
/// <param name="sysDicDtSource"></param>
/// <param name="sysWebUser"></param>
/// <returns></returns>
public Response SaveBusWorkOrderAfter(Dictionary<string, SysDtAllCls> sysDicDtSource, dynamic sysWebUser)
{
return null;
}
#endregion
}
}