| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using Business.StructuredDB.Sqe;
- using Business.VSM;
- using Microsoft.AspNetCore.Mvc;
- using Newtonsoft.Json;
- using NLog.Fluent;
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Threading.Tasks;
- using Volo.Abp;
- using Volo.Abp.AspNetCore.Mvc;
- namespace Business.Controllers
- {
- /// <summary>
- /// 价值流接口
- /// </summary>
- [RemoteService]
- [Area("Sqe")]
- [Route("api/business/sqe")]
- public class SqeController : AbpController
- {
- private readonly ISqeExcelService _SqeExcelService;
- public SqeController(ISqeExcelService SqeExcelService)
- {
- _SqeExcelService = SqeExcelService;
- }
- [HttpGet]
- [Route("import_1")]
- public string Import_1(int file_id)
- {
- String s = _SqeExcelService.ImportData_From_Data(28, "测试用户", DateTime.Now, "测试组织");
- return s;
- }
- }
- }
|