Blame view

netcore/src/Modularity/Extend/NCC.Extend/LqXmzlService.cs 17.2 KB
96009bc9   hexiaodong   hxd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  using NCC.Common.Core.Manager;
  using NCC.Common.Enum;
  using NCC.Common.Extension;
  using NCC.Common.Filter;
  using NCC.Dependency;
  using NCC.DynamicApiController;
  using NCC.FriendlyException;
  using NCC.Extend.Interfaces.LqXmzl;
  using Mapster;
  using Microsoft.AspNetCore.Mvc;
  using SqlSugar;
  using System;
  using System.Collections.Generic;
  using System.Linq;
  using System.Threading.Tasks;
efde7d04   “wangming”   更新多个文件,删除不再使用的CSS...
16
  using NCC.Extend.Entitys.lq_xmzl;
96009bc9   hexiaodong   hxd
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  using NCC.Extend.Entitys.Dto.LqXmzl;
  using Yitter.IdGenerator;
  using NCC.Common.Helper;
  using NCC.JsonSerialization;
  using NCC.Common.Model.NPOI;
  using NCC.Common.Configuration;
  using NCC.DataEncryption;
  using NCC.ClayObject;
  
  namespace NCC.Extend.LqXmzl
  {
      /// <summary>
      /// 项目资料服务
      /// </summary>
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
31
      [ApiDescriptionSettings(Tag = "绿纤项目资料服务", Name = "LqXmzl", Order = 200)]
96009bc9   hexiaodong   hxd
32
33
34
35
36
37
38
39
40
41
      [Route("api/Extend/[controller]")]
      public class LqXmzlService : ILqXmzlService, IDynamicApiController, ITransient
      {
          private readonly ISqlSugarRepository<LqXmzlEntity> _lqXmzlRepository;
          private readonly SqlSugarScope _db;
          private readonly IUserManager _userManager;
  
          /// <summary>
          /// 初始化一个<see cref="LqXmzlService"/>类型的新实例
          /// </summary>
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
42
          public LqXmzlService(ISqlSugarRepository<LqXmzlEntity> lqXmzlRepository, IUserManager userManager)
96009bc9   hexiaodong   hxd
43
          {
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
44
              _lqXmzlRepository = lqXmzlRepository;
96009bc9   hexiaodong   hxd
45
46
47
48
              _db = _lqXmzlRepository.Context;
              _userManager = userManager;
          }
  
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
49
50
          #region 获取项目资料
  
96009bc9   hexiaodong   hxd
51
52
53
54
55
56
57
58
59
60
61
62
          /// <summary>
          /// 获取项目资料
          /// </summary>
          /// <param name="id">参数</param>
          /// <returns></returns>
          [HttpGet("{id}")]
          public async Task<dynamic> GetInfo(string id)
          {
              var entity = await _db.Queryable<LqXmzlEntity>().FirstAsync(p => p.Id == id);
              var output = entity.Adapt<LqXmzlInfoOutput>();
              return output;
          }
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
63
          #endregion
f987b6a6   “wangming”   feat: 完善开单记录汇总查询功能
64
65
  
          #region 获取项目资料列表
96009bc9   hexiaodong   hxd
66
          /// <summary>
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
67
68
69
70
          /// 获取项目资料列表
          /// </summary>
          /// <param name="input">请求参数</param>
          /// <returns></returns>
96009bc9   hexiaodong   hxd
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
          [HttpGet("")]
          public async Task<dynamic> GetList([FromQuery] LqXmzlListQueryInput input)
          {
              var sidx = input.sidx == null ? "id" : input.sidx;
              var data = await _db.Queryable<LqXmzlEntity>()
                  .WhereIF(!string.IsNullOrEmpty(input.id), p => p.Id.Contains(input.id))
                  .WhereIF(!string.IsNullOrEmpty(input.xmbh), p => p.Xmbh.Contains(input.xmbh))
                  .WhereIF(!string.IsNullOrEmpty(input.xmmc), p => p.Xmmc.Contains(input.xmmc))
                  .WhereIF(!string.IsNullOrEmpty(input.bzjg), p => p.Bzjg.Equals(input.bzjg))
                  .WhereIF(!string.IsNullOrEmpty(input.xmsc), p => p.Xmsc.Equals(input.xmsc))
                  .WhereIF(!string.IsNullOrEmpty(input.jcfwtc), p => p.Jcfwtc.Equals(input.jcfwtc))
                  .WhereIF(!string.IsNullOrEmpty(input.fl1), p => p.Fl1.Contains(input.fl1))
                  .WhereIF(!string.IsNullOrEmpty(input.fl2), p => p.Fl2.Contains(input.fl2))
                  .WhereIF(!string.IsNullOrEmpty(input.fl3), p => p.Fl3.Contains(input.fl3))
                  .WhereIF(!string.IsNullOrEmpty(input.fl4), p => p.Fl4.Contains(input.fl4))
96009bc9   hexiaodong   hxd
86
87
88
                  .WhereIF(!string.IsNullOrEmpty(input.fl), p => p.Fl.Contains(input.fl))
                  .WhereIF(!string.IsNullOrEmpty(input.qt1), p => p.Qt1.Contains(input.qt1))
                  .WhereIF(!string.IsNullOrEmpty(input.qt2), p => p.Qt2.Contains(input.qt2))
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
89
                  .WhereIF(!string.IsNullOrEmpty(input.sgf), p => p.Sgf.Equals(input.sgf))
f987b6a6   “wangming”   feat: 完善开单记录汇总查询功能
90
91
92
                  .WhereIF(!string.IsNullOrEmpty(input.beautyType), p => p.BeautyType.Contains(input.beautyType))
                  .WhereIF(input.isEffective != 0, p => p.IsEffective.Equals(input.isEffective))
                  .WhereIF(!string.IsNullOrEmpty(input.sourceType), p => p.SourceType.Contains(input.sourceType))
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
93
                  .Select(it => new LqXmzlListOutput
96009bc9   hexiaodong   hxd
94
95
                  {
                      id = it.Id,
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
96
97
98
99
100
101
102
103
104
                      xmbh = it.Xmbh,
                      xmmc = it.Xmmc,
                      bzjg = it.Bzjg,
                      xmsc = it.Xmsc,
                      jcfwtc = it.Jcfwtc,
                      fl1 = it.Fl1,
                      fl2 = it.Fl2,
                      fl3 = it.Fl3,
                      fl4 = it.Fl4,
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
105
106
107
                      fl = it.Fl,
                      qt1 = it.Qt1,
                      qt2 = it.Qt2,
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
108
                      sgf = it.Sgf,
f987b6a6   “wangming”   feat: 完善开单记录汇总查询功能
109
                      beautyType = it.BeautyType,
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
110
                      sourceType = it.SourceType,
f987b6a6   “wangming”   feat: 完善开单记录汇总查询功能
111
                      isEffective = it.IsEffective,
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
112
113
                  }).MergeTable().OrderBy(sidx + " " + input.sort).ToPagedListAsync(input.currentPage, input.pageSize);
              return PageResult<LqXmzlListOutput>.SqlSugarPageResult(data);
96009bc9   hexiaodong   hxd
114
          }
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
115
          #endregion
96009bc9   hexiaodong   hxd
116
  
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
117
          #region 新建项目资料
96009bc9   hexiaodong   hxd
118
119
120
121
122
123
124
125
126
127
128
129
130
131
          /// <summary>
          /// 新建项目资料
          /// </summary>
          /// <param name="input">参数</param>
          /// <returns></returns>
          [HttpPost("")]
          public async Task Create([FromBody] LqXmzlCrInput input)
          {
              var userInfo = await _userManager.GetUserInfo();
              var entity = input.Adapt<LqXmzlEntity>();
              entity.Id = YitIdHelper.NextId().ToString();
              var isOk = await _db.Insertable(entity).IgnoreColumns(ignoreNullColumn: true).ExecuteCommandAsync();
              if (!(isOk > 0)) throw NCCException.Oh(ErrorCode.COM1000);
          }
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
132
          #endregion
96009bc9   hexiaodong   hxd
133
  
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
134
          #region 获取项目资料无分页列表
96009bc9   hexiaodong   hxd
135
          /// <summary>
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
136
137
138
139
          /// 获取项目资料无分页列表
          /// </summary>
          /// <param name="input">请求参数</param>
          /// <returns></returns>
96009bc9   hexiaodong   hxd
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
          [NonAction]
          public async Task<dynamic> GetNoPagingList([FromQuery] LqXmzlListQueryInput input)
          {
              var sidx = input.sidx == null ? "id" : input.sidx;
              var data = await _db.Queryable<LqXmzlEntity>()
                  .WhereIF(!string.IsNullOrEmpty(input.id), p => p.Id.Contains(input.id))
                  .WhereIF(!string.IsNullOrEmpty(input.xmbh), p => p.Xmbh.Contains(input.xmbh))
                  .WhereIF(!string.IsNullOrEmpty(input.xmmc), p => p.Xmmc.Contains(input.xmmc))
                  .WhereIF(!string.IsNullOrEmpty(input.bzjg), p => p.Bzjg.Equals(input.bzjg))
                  .WhereIF(!string.IsNullOrEmpty(input.xmsc), p => p.Xmsc.Equals(input.xmsc))
                  .WhereIF(!string.IsNullOrEmpty(input.jcfwtc), p => p.Jcfwtc.Equals(input.jcfwtc))
                  .WhereIF(!string.IsNullOrEmpty(input.fl1), p => p.Fl1.Contains(input.fl1))
                  .WhereIF(!string.IsNullOrEmpty(input.fl2), p => p.Fl2.Contains(input.fl2))
                  .WhereIF(!string.IsNullOrEmpty(input.fl3), p => p.Fl3.Contains(input.fl3))
                  .WhereIF(!string.IsNullOrEmpty(input.fl4), p => p.Fl4.Contains(input.fl4))
96009bc9   hexiaodong   hxd
155
156
157
                  .WhereIF(!string.IsNullOrEmpty(input.fl), p => p.Fl.Contains(input.fl))
                  .WhereIF(!string.IsNullOrEmpty(input.qt1), p => p.Qt1.Contains(input.qt1))
                  .WhereIF(!string.IsNullOrEmpty(input.qt2), p => p.Qt2.Contains(input.qt2))
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
158
159
                  .WhereIF(!string.IsNullOrEmpty(input.sgf), p => p.Sgf.Equals(input.sgf))
                  .Select(it => new LqXmzlListOutput
96009bc9   hexiaodong   hxd
160
161
                  {
                      id = it.Id,
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
162
163
164
165
166
167
168
169
170
                      xmbh = it.Xmbh,
                      xmmc = it.Xmmc,
                      bzjg = it.Bzjg,
                      xmsc = it.Xmsc,
                      jcfwtc = it.Jcfwtc,
                      fl1 = it.Fl1,
                      fl2 = it.Fl2,
                      fl3 = it.Fl3,
                      fl4 = it.Fl4,
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
171
172
173
                      fl = it.Fl,
                      qt1 = it.Qt1,
                      qt2 = it.Qt2,
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
174
175
176
                      sgf = it.Sgf,
                  }).MergeTable().OrderBy(sidx + " " + input.sort).ToListAsync();
              return data;
96009bc9   hexiaodong   hxd
177
          }
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
178
          #endregion
96009bc9   hexiaodong   hxd
179
  
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
180
          #region 导出项目资料
96009bc9   hexiaodong   hxd
181
          /// <summary>
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
182
183
184
185
          /// 导出项目资料
          /// </summary>
          /// <param name="input">请求参数</param>
          /// <returns></returns>
96009bc9   hexiaodong   hxd
186
187
188
189
190
191
192
193
194
195
196
197
198
199
          [HttpGet("Actions/Export")]
          public async Task<dynamic> Export([FromQuery] LqXmzlListQueryInput input)
          {
              var userInfo = await _userManager.GetUserInfo();
              var exportData = new List<LqXmzlListOutput>();
              if (input.dataType == 0)
              {
                  var data = Clay.Object(await this.GetList(input));
                  exportData = data.Solidify<PageResult<LqXmzlListOutput>>().list;
              }
              else
              {
                  exportData = await this.GetNoPagingList(input);
              }
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
200
              List<ParamsModel> paramList = "[{\"value\":\"主键\",\"field\":\"id\"},{\"value\":\"项目编号\",\"field\":\"xmbh\"},{\"value\":\"项目名称\",\"field\":\"xmmc\"},{\"value\":\"标准价格\",\"field\":\"bzjg\"},{\"value\":\"时长(分)\",\"field\":\"xmsc\"},{\"value\":\"基础服务提成\",\"field\":\"jcfwtc\"},{\"value\":\"分类1汇总表\",\"field\":\"fl1\"},{\"value\":\"分类2汇总表\",\"field\":\"fl2\"},{\"value\":\"分类3工资用\",\"field\":\"fl3\"},{\"value\":\"分类4品项用\",\"field\":\"fl4\"},{\"value\":\"统计类别\",\"field\":\"tjlb\"},{\"value\":\"折扣类别\",\"field\":\"zklb\"},{\"value\":\"分类\",\"field\":\"fl\"},{\"value\":\"其它1\",\"field\":\"qt1\"},{\"value\":\"其它2\",\"field\":\"qt2\"},{\"value\":\"溯源金额\",\"field\":\"syje\"},{\"value\":\"Cell金额\",\"field\":\"cellje\"},{\"value\":\"手工费\",\"field\":\"sgf\"},]".ToList<ParamsModel>();
96009bc9   hexiaodong   hxd
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
              ExcelConfig excelconfig = new ExcelConfig();
              excelconfig.FileName = "项目资料.xls";
              excelconfig.HeadFont = "微软雅黑";
              excelconfig.HeadPoint = 10;
              excelconfig.IsAllSizeColumn = true;
              excelconfig.ColumnModel = new List<ExcelColumnModel>();
              List<string> selectKeyList = input.selectKey.Split(',').ToList();
              foreach (var item in selectKeyList)
              {
                  var isExist = paramList.Find(p => p.field == item);
                  if (isExist != null)
                  {
                      excelconfig.ColumnModel.Add(new ExcelColumnModel() { Column = isExist.field, ExcelColumn = isExist.value });
                  }
              }
              var addPath = FileVariable.TemporaryFilePath + excelconfig.FileName;
              ExcelExportHelper<LqXmzlListOutput>.Export(exportData, excelconfig, addPath);
              var fileName = _userManager.UserId + "|" + addPath + "|xls";
              var output = new
              {
                  name = excelconfig.FileName,
                  url = "/api/File/Download?encryption=" + DESCEncryption.Encrypt(fileName, "NCC")
              };
              return output;
          }
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
226
          #endregion
96009bc9   hexiaodong   hxd
227
  
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
228
          #region 批量删除项目资料
96009bc9   hexiaodong   hxd
229
230
231
232
233
234
235
236
          /// <summary>
          /// 批量删除项目资料
          /// </summary>
          /// <param name="ids">主键数组</param>
          /// <returns></returns>
          [HttpPost("batchRemove")]
          public async Task BatchRemove([FromBody] List<string> ids)
          {
f987b6a6   “wangming”   feat: 完善开单记录汇总查询功能
237
              throw NCCException.Oh("不允许删除项目资料");
96009bc9   hexiaodong   hxd
238
239
240
241
242
243
244
245
              var entitys = await _db.Queryable<LqXmzlEntity>().In(it => it.Id, ids).ToListAsync();
              if (entitys.Count > 0)
              {
                  try
                  {
                      //开启事务
                      _db.BeginTran();
                      //批量删除项目资料
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
246
                      await _db.Deleteable<LqXmzlEntity>().In(d => d.Id, ids).ExecuteCommandAsync();
96009bc9   hexiaodong   hxd
247
248
249
250
251
252
253
254
255
256
257
                      //关闭事务
                      _db.CommitTran();
                  }
                  catch (Exception)
                  {
                      //回滚事务
                      _db.RollbackTran();
                      throw NCCException.Oh(ErrorCode.COM1002);
                  }
              }
          }
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
258
          #endregion
96009bc9   hexiaodong   hxd
259
  
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
260
          #region 更新项目资料
96009bc9   hexiaodong   hxd
261
262
263
264
265
266
267
268
269
270
271
272
273
          /// <summary>
          /// 更新项目资料
          /// </summary>
          /// <param name="id">主键</param>
          /// <param name="input">参数</param>
          /// <returns></returns>
          [HttpPut("{id}")]
          public async Task Update(string id, [FromBody] LqXmzlUpInput input)
          {
              var entity = input.Adapt<LqXmzlEntity>();
              var isOk = await _db.Updateable(entity).IgnoreColumns(ignoreAllNullColumns: true).ExecuteCommandAsync();
              if (!(isOk > 0)) throw NCCException.Oh(ErrorCode.COM1001);
          }
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
274
          #endregion
96009bc9   hexiaodong   hxd
275
  
f987b6a6   “wangming”   feat: 完善开单记录汇总查询功能
276
          #region 删除项目资料
96009bc9   hexiaodong   hxd
277
278
279
          /// <summary>
          /// 删除项目资料
          /// </summary>
f987b6a6   “wangming”   feat: 完善开单记录汇总查询功能
280
          /// <param name="id">主键</param>
96009bc9   hexiaodong   hxd
281
282
283
284
          /// <returns></returns>
          [HttpDelete("{id}")]
          public async Task Delete(string id)
          {
f987b6a6   “wangming”   feat: 完善开单记录汇总查询功能
285
              throw NCCException.Oh("不允许删除项目资料");
96009bc9   hexiaodong   hxd
286
          }
2ce7c3cb   “wangming”   更新门店目标设定相关功能,新增字段...
287
          #endregion
f987b6a6   “wangming”   feat: 完善开单记录汇总查询功能
288
289
290
291
292
293
294
  
          #region 获取字段去重数据
          /// <summary>
          /// 获取指定字段的去重数据
          /// </summary>
          /// <param name="fieldName">字段名称,支持:fl1fl2fl3fl4flqt1beautyTypesourceType</param>
          /// <returns>去重后的字段数据</returns>
63df7ccb   “wangming”   1
295
296
          [HttpGet("GetDistinctFieldData")]
          public async Task<dynamic> GetDistinctFieldData([FromQuery] string fieldName)
f987b6a6   “wangming”   feat: 完善开单记录汇总查询功能
297
298
299
300
          {
              try
              {
                  // 验证字段名称
63df7ccb   “wangming”   1
301
                  var validFields = new[] { "fl1", "fl2", "fl3", "fl4", "fl", "qt1", "qt2", "beautyType", "sourceType" };
f987b6a6   “wangming”   feat: 完善开单记录汇总查询功能
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
                  if (!validFields.Contains(fieldName))
                  {
                      throw NCCException.Oh($"无效的字段名称: {fieldName}。支持的字段: {string.Join(", ", validFields)}");
                  }
  
                  List<string> distinctValues = new List<string>();
  
                  switch (fieldName)
                  {
                      case "fl1":
                          distinctValues = await _db.Queryable<LqXmzlEntity>()
                              .Where(p => !string.IsNullOrEmpty(p.Fl1))
                              .Select(p => p.Fl1)
                              .Distinct()
                              .ToListAsync();
                          break;
                      case "fl2":
                          distinctValues = await _db.Queryable<LqXmzlEntity>()
                              .Where(p => !string.IsNullOrEmpty(p.Fl2))
                              .Select(p => p.Fl2)
                              .Distinct()
                              .ToListAsync();
                          break;
                      case "fl3":
                          distinctValues = await _db.Queryable<LqXmzlEntity>()
                              .Where(p => !string.IsNullOrEmpty(p.Fl3))
                              .Select(p => p.Fl3)
                              .Distinct()
                              .ToListAsync();
                          break;
                      case "fl4":
                          distinctValues = await _db.Queryable<LqXmzlEntity>()
                              .Where(p => !string.IsNullOrEmpty(p.Fl4))
                              .Select(p => p.Fl4)
                              .Distinct()
                              .ToListAsync();
                          break;
                      case "fl":
                          distinctValues = await _db.Queryable<LqXmzlEntity>()
                              .Where(p => !string.IsNullOrEmpty(p.Fl))
                              .Select(p => p.Fl)
                              .Distinct()
                              .ToListAsync();
                          break;
                      case "qt1":
                          distinctValues = await _db.Queryable<LqXmzlEntity>()
                              .Where(p => !string.IsNullOrEmpty(p.Qt1))
                              .Select(p => p.Qt1)
                              .Distinct()
                              .ToListAsync();
                          break;
63df7ccb   “wangming”   1
353
354
355
356
357
358
359
                      case "qt2":
                          distinctValues = await _db.Queryable<LqXmzlEntity>()
                              .Where(p => !string.IsNullOrEmpty(p.Qt2))
                              .Select(p => p.Qt2)
                              .Distinct()
                              .ToListAsync();
                          break;
f987b6a6   “wangming”   feat: 完善开单记录汇总查询功能
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
                      case "beautyType":
                          distinctValues = await _db.Queryable<LqXmzlEntity>()
                              .Where(p => !string.IsNullOrEmpty(p.BeautyType))
                              .Select(p => p.BeautyType)
                              .Distinct()
                              .ToListAsync();
                          break;
                      case "sourceType":
                          distinctValues = await _db.Queryable<LqXmzlEntity>()
                              .Where(p => !string.IsNullOrEmpty(p.SourceType))
                              .Select(p => p.SourceType)
                              .Distinct()
                              .ToListAsync();
                          break;
                  }
  
                  return new
                  {
                      fieldName = fieldName,
                      values = distinctValues.OrderBy(x => x).ToList()
                  };
              }
              catch (Exception ex)
              {
                  throw NCCException.Oh($"获取字段去重数据失败:{ex.Message}");
              }
          }
          #endregion
  
  
96009bc9   hexiaodong   hxd
390
391
      }
  }