wangxinhui
2025-04-29 95e39ae7aecd6e1016c71cf5ae70a680d8f569bb
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;
            }
        }
    }
}