using Microsoft.EntityFrameworkCore;
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace iWare.Wms.Core
|
{
|
public class AccessInterfaceLog : DEntityBase
|
{
|
/// <summary>
|
/// 调用行为
|
/// </summary>
|
[Comment("调用行为")]
|
[Required]
|
public int Action { get; set; }
|
|
/// <summary>
|
/// 操作接口
|
/// </summary>
|
[Comment("操作接口")]
|
[MaxLength(200)]
|
public string OperateAddress { get; set; }
|
|
[Comment("操作人Id")]
|
[MaxLength(200)]
|
public string OperateUserId { get; set; }
|
|
[Comment("操作人名称")]
|
[MaxLength(200)]
|
public string OperateUserName { get; set; }
|
|
/// <summary>
|
/// 操作Ip
|
/// </summary>
|
[Comment("操作Ip")]
|
[MaxLength(50)]
|
public string IPAddress { get; set; }
|
|
/// <summary>
|
/// 参数1
|
/// </summary>
|
[Comment("参数1")]
|
[MaxLength(200)]
|
public string Param1 { get; set; }
|
|
/// <summary>
|
/// 参数2
|
/// </summary>
|
[Comment("参数2")]
|
[MaxLength(200)]
|
public string Param2 { get; set; }
|
|
/// <summary>
|
/// 参数3
|
/// </summary>
|
[Comment("参数3")]
|
[MaxLength(200)]
|
public string Param3 { get; set; }
|
|
/// <summary>
|
/// 请求参数json
|
/// </summary>
|
[Comment("请求参数json")]
|
public string ParaJSON { get; set; }
|
|
/// <summary>
|
/// 返回结果
|
/// </summary>
|
[Comment("返回结果")]
|
public string ResultJson { get; set; }
|
|
/// <summary>
|
/// 关键字集合
|
/// </summary>
|
[Comment("关键字集合")]
|
public string Keys { get; set; }
|
}
|
}
|