xwt
2025-10-17 707e8f07abb295629f73557759cf0e708ca6b5fa
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
using System.Dynamic;
using MES.Service.Dto.webApi;
using MES.Service.Modes;
using MES.Service.service;
using MES.Service.service.BasicData.Material;
using MES.Service.util;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
 
namespace MESApplication.Controllers.BasicData;
 
/// <summary>
/// 模具号接口控制器
/// </summary>
[ApiController]
[Route("api/[controller]")]
public class MesMouldController : ControllerBase
{
    private readonly MessageCenterManager _manager = new();
    private readonly MesMouldManager m = new();
 
    private readonly string METHOD = "POST";
    private readonly string TableName = "MES_MOULD";
    private readonly string URL = "http://localhost:10054/api/MesMould/";
 
    /// <summary>
    /// 保存单个模具数据(带Type逻辑)
    /// </summary>
    [HttpPost("Save")]
    public ResponseResult Save(ErpMould unit)
    {
        var entity = new MessageCenter
        {
            TableName = TableName,
            Url = URL + "Save",
            Method = METHOD,
            Data = JsonConvert.SerializeObject(unit),
            Status = 1,
            Route = unit.Code,
            CreateBy = "PL017"
        };
        try
        {
            dynamic resultInfos = new ExpandoObject();
            var save = m.Save(unit);
            resultInfos.tbBillList = save;
 
            entity.Result = 0;
            if (save) entity.Result = 1;
 
            entity.DealWith = 1;
            _manager.save(entity);
 
            return new ResponseResult { status = 0, message = "OK", data = resultInfos };
        }
        catch (Exception ex)
        {
            entity.Result = 0;
            entity.DealWith = 0;
            entity.ResultData = ex.Message;
            _manager.save(entity);
            return ResponseResult.ResponseError(ex);
        }
    }
 
    /// <summary>
    /// 批量保存模具数据(带Type逻辑)
    /// </summary>
    [HttpPost("SaveList")]
    public ResponseResult SaveList(List<ErpMould> units)
    {
        var entity = new MessageCenter
        {
            TableName = TableName,
            Url = URL + "SaveList",
            Method = METHOD,
            Data = JsonConvert.SerializeObject(units),
            Status = 1,
            CreateBy = "PL017"
        };
        try
        {
            dynamic resultInfos = new ExpandoObject();
            var save = m.SaveList(units);
            resultInfos.tbBillList = save;
 
            entity.Result = 0;
            if (save) entity.Result = 1;
 
            entity.DealWith = 1;
            _manager.save(entity);
 
            return new ResponseResult { status = 0, message = "OK", data = resultInfos };
        }
        catch (Exception ex)
        {
            entity.Result = 0;
            entity.DealWith = 0;
            entity.ResultData = ex.Message;
            _manager.save(entity);
            return ResponseResult.ResponseError(ex);
        }
    }
 
    [HttpPost("GetList")]
    public ResponseResult GetList()
    {
        try
        {
            dynamic resultInfos = new ExpandoObject();
            resultInfos.tbBillList = m.GetList();
            return new ResponseResult { status = 0, message = "OK", data = resultInfos };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
 
    [HttpPost("GetById")]
    public ResponseResult GetById(int id)
    {
        try
        {
            dynamic resultInfos = new ExpandoObject();
            resultInfos.tbBillList = m.GetById(id);
            return new ResponseResult { status = 0, message = "OK", data = resultInfos };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
 
    [HttpPost("DeleteByIds")]
    public ResponseResult DeleteByIds([FromBody] object[] ids)
    {
        try
        {
            dynamic resultInfos = new ExpandoObject();
            resultInfos.tbBillList = m.DeleteByIds(ids);
            return new ResponseResult { status = 0, message = "OK", data = resultInfos };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
}