1
huangxiaoqiang
5 天以前 60f86b0fba3ab82e245654cddfa5abc62fe1f9e8
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
using Newtonsoft.Json.Serialization;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Common.APIEnum;
using WIDESEA_Core.Helper;
using WIDESEA_Core;
using WIDESEA_DTO;
using WIDESEA_Model.Models;
 
namespace WIDESEA_TaskInfoService
{
    public partial class TaskService
    {
        static object lock_solder = new object();
        public MesResponseContent SolderMaskOutNotice()
        {
            //锁
            lock (lock_solder)
            {
                MesResponseContent responseContent = new MesResponseContent();
                try
                {
 
                }
                catch (Exception ex)
                {
                    responseContent.Error(ex.Message);
                }
                return responseContent;
            }
        }
    }
}