tangxu
2023-04-10 7f8ba13a353ed3da5efbbbf623d586428f4bce96
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
using Microsoft.AspNetCore.Mvc;
using System.Net;
using System.Net.Http.Headers;
using Microsoft.Extensions.Hosting.Internal;
using Microsoft.AspNetCore.Http.Extensions;
using IStation.Untity;
using Furion.DynamicApiController;
using System.ComponentModel.DataAnnotations;
using Mapster;
 
 
namespace IStation.Application
{
    /// <summary>
    /// UserAttention
    /// </summary>
    [Route("User/UserAttention")]
    [ApiDescriptionSettings("User", Name = "用户关注", Order = 899)]
    public class UserAttention_Controller : IDynamicApiController 
    {
        private readonly Service.UserAttention _service = new Service.UserAttention();
 
        #region Query
 
        /// <summary>
        ///获取所有
        /// </summary>
        [Route("GetAll@V1.0")]
        [HttpGet]
        public List<UserAttentionDto> GetAll()
        {
            var list = _service.GetAll();
            var vm_list = list?.Select(x => x.Adapt<Model.UserAttention, UserAttentionDto>()).ToList();
            return vm_list;
        }
 
        /// <summary>
        /// 通过 ID 获取
        /// </summary>
        [Route("GetByID@V1.0")]
        [HttpGet]
        public UserAttentionDto GetByID([FromQuery][Required] IDInput input)
        {
            var model = _service.GetByID(input.ID);
            return model?.Adapt<Model.UserAttention, UserAttentionDto>();
        }
 
        /// <summary>
        /// 通过 Ids 获取
        /// </summary>
        [Route("GetByIds@V1.0")]
        [HttpGet]
        public List<UserAttentionDto> GetByIds([FromQuery] IdsInput model)
        {
            var ids = LongListHelper.ToList(model.Ids);
            var list = _service.GetByIds(ids);
            var vm_list = list?.Select(x => x.Adapt<Model.UserAttention, UserAttentionDto>()).ToList();
            return vm_list;
        }
 
        /// <summary>
        /// 通过 UserID 获取
        /// </summary>
        [Route("GetByUserID@V1.0")]
        [HttpGet]
        public List<UserAttentionDto> GetByUserID
            (
                [Required,Range(1,long.MaxValue,ErrorMessage ="UserID 必须大于0")]
                long UserID
            )
        {
            var list = _service.GetByUserID(UserID);
            var vm_list = list?.Select(x => x.Adapt<Model.UserAttention, UserAttentionDto>()).ToList();
            return vm_list;
        }
 
        /// <summary>
        /// 通过 UserID 和 ObjectType 获取
        /// </summary>
        [Route("GetByUserIDAndObjectType@V1.0")]
        [HttpGet]
        public List<UserAttentionDto> GetByUserIDAndObjectType
            (
                [Required,Range(1,long.MaxValue,ErrorMessage ="UserID 必须大于0")]
                long UserID,
                [Required,DataValidation(AllowEmptyStrings =false)]
                string ObjectType
            )
        {
            var list = _service.GetByUserIDAndObjectType(UserID,ObjectType);
            var vm_list = list?.Select(x => x.Adapt<Model.UserAttention, UserAttentionDto>()).ToList();
            return vm_list;
        }
 
        /// <summary>
        /// 通过 UserID 和 ObjectType 获取
        /// </summary>
        [Route("GetByUserIDAndObjectTypeUnderCorpID@V1.0")]
        [HttpGet]
        public List<UserAttentionDto> GetByUserIDAndObjectTypeUnderCorpID
            (
                [Required,Range(1,long.MaxValue,ErrorMessage ="UserID 必须大于0")]
                long UserID,
                [Required,Range(1,long.MaxValue,ErrorMessage ="CorpID 必须大于0")]
                long CorpID,
                [Required,DataValidation(AllowEmptyStrings =false)]
                string ObjectType
            )
        {
 
            var list = _service.GetByUserIDAndObjectTypeUnderCorpID(UserID,CorpID, ObjectType);
            var vm_list = list?.Select(x => x.Adapt<Model.UserAttention, UserAttentionDto>()).ToList();
            return vm_list;
        }
 
        /// <summary>
        /// 通过 UserID 和 Object 获取
        /// </summary>
        [Route("GetByUserIDAndObject@V1.0")]
        [HttpGet]
        public UserAttentionDto GetByUserIDAndObject
           (
                [Required,Range(1,long.MaxValue,ErrorMessage ="UserID 必须大于0")]
                long UserID,
                [Required,Range(1,long.MaxValue,ErrorMessage ="CorpID 必须大于0")]
                long CorpID,
                [Required,DataValidation(AllowEmptyStrings =false)]
                string ObjectType,
                [Required,Range(1,long.MaxValue,ErrorMessage ="ObjectID 必须大于0")]
                long ObjectID
            )
        {
            var model = _service.GetByUserIDAndObject(UserID, CorpID, ObjectType,ObjectID);
            return model?.Adapt<Model.UserAttention, UserAttentionDto>();
        }
 
        #endregion
 
        #region Insert
 
        /// <summary>
        /// 插入一条
        /// </summary>
        [Route("Insert@V1.0")]
        [HttpPost]
        public long Insert(AddUserAttentionInput input)
        {
            if (input == null)
                return default;
            var model = input.Adapt<AddUserAttentionInput, Model.UserAttention>();
            var id = _service.Insert(model);
            return id;
        }
 
        /// <summary>
        /// 插入多条
        /// </summary>
        [Route("Inserts@V1.0")]
        [HttpPost]
        public bool Inserts(List<AddUserAttentionInput> inputList)
        {
            if (inputList == null || inputList.Count < 1)
                return false;
            var list = inputList.Select(x => x.Adapt<AddUserAttentionInput, Model.UserAttention>()).ToList();
            var bol = _service.Inserts(list);
            return bol;
        }
 
        #endregion
 
        #region 设置
 
        /// <summary>
        /// 更新多条
        /// </summary>
        [Route("Set@V1.0")]
        [HttpPost]
        public bool Set(SetUserAttentionInput input) 
        {
            if (input == null)
            {
                return false;
            }
            var attentions = input.Attentions?.Select(x => x.Adapt<AttentionObjectSelected, Model.AttentionObjectSelected>()).ToList();
            var bol = _service.Set(input.UserID, attentions);
            return bol;
        }
 
        #endregion
 
        #region Delete
 
        /// <summary>
        /// 通过 ID 删除
        /// </summary>
        [Route("DeleteByID@V1.0")]
        [HttpDelete]
        public DeleteReasonOutput DeleteByID
            (
                [Required,Range(1,long.MaxValue,ErrorMessage ="ID 必须大于0")]
                long ID
            )
        {
            var bol = _service.DeleteByID(ID, out string msg);
            return new DeleteReasonOutput() { Success = bol, Reason = msg };
        }
 
        /// <summary>
        /// 通过 UserID 和 Object 删除
        /// </summary>
        [Route("DeleteByUserIDAndObject@V1.0")]
        [HttpDelete]
        public DeleteReasonOutput DeleteByUserIDAndObject
            (
                [Required,Range(1,long.MaxValue,ErrorMessage ="UserID 必须大于0")]
                long UserID,
                [Required,Range(1,long.MaxValue,ErrorMessage ="CorpID 必须大于0")]
                long CorpID,
                [Required,DataValidation(AllowEmptyStrings =false)]
                string ObjectType,
                [Required,Range(1,long.MaxValue,ErrorMessage ="ObjectID 必须大于0")]
                long ObjectID
            )
        {
            var bol = _service.DeleteByUserIDAndObject(UserID,CorpID,ObjectType,ObjectID,out string msg);
            return new DeleteReasonOutput() { Success = bol, Reason = msg };
        }
 
        #endregion
 
    }
}