username@email.com
2023-02-02 db0147994ef4899702ac864ac0794a79fe980416
zhengcaioa/zhengcaioa/Controllers/Customer/CooperatecustomCustomerController.cs
@@ -16,6 +16,7 @@
using zhengcaioa.Models;
using zhengcaioa.IService;
using System.Transactions;
using System.IdentityModel.Tokens.Jwt;
namespace zhengcaioa.Controllers.Customer
{
@@ -31,11 +32,13 @@
        private readonly ISysAttachmentService _sysAttachmentService;
        private readonly IPltPageService _pltPageService;
        private readonly ICooperVisitService _cooperVisitService;
        private readonly IIntentionCustomerService _intentionCustomerService;
        public CooperatecustomCustomerController(ILogger<CooperatecustomCustomerController> logger, IProjectService projectService, ILiaotianService liaotianService, ICooperatecustomCustomerService cooperatecustomCustomerService, IUserService userService, IHrDeptService hrDeptService
            , ISysAttachmentService sysAttachmentService
              , IPltPageService pltPageService
             , ICooperVisitService cooperVisitService)
             , ICooperVisitService cooperVisitService
            , IIntentionCustomerService intentionCustomerService)
        {
            _logger = logger;
            _projectService = projectService;
@@ -46,6 +49,7 @@
            _sysAttachmentService = sysAttachmentService;
            _pltPageService = pltPageService;
            _cooperVisitService = cooperVisitService;
            _intentionCustomerService = intentionCustomerService;
        }
        public IActionResult Index()
@@ -577,5 +581,9 @@
            return new JsonResult(resultEntity);
        }
    }
}