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