using FreeSql.DataAnnotations;
namespace Admin.Core.Model.Admin
{
    /// 
    /// 操作日志
    /// 
	[Table(Name = "ad_opration_log")]
    public class OprationLogEntity: LogAbstract
    {
        /// 
        /// 接口名称
        /// 
        [Column(Position = 2, StringLength = 50)]
        public string ApiLabel { get; set; }
        /// 
        /// 接口地址
        /// 
        [Column(Position = 3, StringLength = 500)]
        public string ApiPath { get; set; }
        /// 
        /// 接口提交方法
        /// 
        [Column(Position = 4, StringLength = 50)]
        public string ApiMethod { get; set; }
        /// 
        /// 操作参数
        /// 
        [Column(StringLength = -1)]
        public string Params { get; set; }
    }
}