using System; 
using System.Collections.Generic;
using SqlSugar;
namespace wms.sqlsugar.model.sx
{
    /// 
    ///  日志记录表
    /// 
    [Tenant("sx")]
    [SugarTable("Bill_Log")]
    public partial class BillLog
    { 
        ///  
        /// TypeNum
        ///  
        [SugarColumn(ColumnDataType ="int" ,  IsNullable = false )]
        public int TypeNum { get; set; }
        ///  
        /// AppTypeNum
        ///  
        [SugarColumn(ColumnDataType ="int" ,  IsNullable = false )]
        public int AppTypeNum { get; set; }
        ///  
        /// ContentText
        ///  
        [SugarColumn(ColumnDataType ="nvarchar" , Length = 1000  , IsNullable = true )]
        public string ContentText { get; set; }
        ///  
        /// Method
        ///  
        [SugarColumn(ColumnDataType ="nvarchar" , Length = 200  , IsNullable = true )]
        public string Method { get; set; }
        ///  
        /// IsSucc
        ///  
        [SugarColumn(ColumnDataType ="int" ,  IsNullable = false )]
        public int IsSucc { get; set; }
        ///  
        /// ReqUrl
        ///  
        [SugarColumn(ColumnDataType ="nvarchar" , Length = 200  , IsNullable = true )]
        public string ReqUrl { get; set; }
        ///  
        /// MethodText
        ///  
        [SugarColumn(ColumnDataType ="nvarchar" , Length = 200  , IsNullable = true )]
        public string MethodText { get; set; }
        ///  
        /// ParamJson
        ///  
        [SugarColumn(ColumnDataType ="nvarchar" , IsNullable = true )]
        public string ParamJson { get; set; }
        ///  
        /// Ip
        ///  
        [SugarColumn(ColumnDataType ="nvarchar" , Length = 200  , IsNullable = true )]
        public string Ip { get; set; }
        ///  
        /// Host
        ///  
        [SugarColumn(ColumnDataType ="nvarchar" , Length = 200  , IsNullable = true )]
        public string Host { get; set; }
        ///  
        /// Browser
        ///  
        [SugarColumn(ColumnDataType ="nvarchar" , Length = 200  , IsNullable = true )]
        public string Browser { get; set; }
        ///  
        /// RunMs
        ///  
        [SugarColumn(ColumnDataType ="bigint" ,  IsNullable = true )]
        public long? RunMs { get; set; }
        ///  
        /// LogTime
        ///  
        [SugarColumn(ColumnDataType ="datetime" ,  IsNullable = false )]
        public DateTime LogTime { get; set; }
        ///  
        /// LogWho
        ///  
        [SugarColumn(ColumnDataType ="nvarchar" , Length = 50  , IsNullable = false )]
        public string LogWho { get; set; }
    }
}