liuying
2025-09-24 16edbbe772e24eb71f6519558576d513e3cf2746
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
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWare.Wms.Application
{
    /// <summary>
    /// 添加外部访问日志参数
    /// </summary>
    public class AddAccessInterfaceLogForRequestInput
    {
 
        /// <summary>
        /// 工件号
        /// </summary>
        [Comment("工件号")]
 
        public string WorkPieceID { get; set; }
 
 
        /// <summary>
        /// 当前工序;进入下一工序前,此工序不变化
        /// </summary>
        [Comment("当前工序")]
 
        public string WorkingProcedureCurrent { get; set; }
        public long Id { get; set; }
        /// <summary>
        /// 请求参数Json字符串
        /// </summary>
        public string JsonString { get; set; } = null;
 
        /// <summary>
        /// 请求接口返回结果
        /// </summary>
        public object Result { get; set; } =null;
 
        /// <summary>
        /// 操作类型1--插入,2--查询,3--更新
        /// </summary>
        public int Action { get; set; }
 
        /// <summary>
        /// 关键字
        /// </summary>
        public string Key { get; set; }
 
        /// <summary>
        /// 调用方Ip
        /// </summary>
        public string IpAddress { get; set; } = "";
 
        /// <summary>
        /// 操作的接口地址
        /// </summary>
        public string OperateAddress { get; set; } = "";
 
        /// <summary>
        /// 操作人Id
        /// </summary>
        public string OperateUserId { get; set; } = null;
 
        /// <summary>
        /// 操作人名称
        /// </summary>
        public string OperateUserName { get; set; } = null;
    }
}