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;
|
}
|
}
|
}
|
}
|