wangxinhui
2025-04-29 c38154df95a2c2fa1bd32c45f6be9c0d98e37440
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_DTO;
 
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;
            }
        }
    }
}