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 } }