using FreeSql.DataAnnotations;
using System;

namespace BBWY.Server.Model.Db.Statistics
{

    [Table(Name = "apiexecutiontimes", DisableSyncStructure = true)]
    public partial class ApiExecutionTimes
    {

        [Column(DbType = "bigint", IsPrimary = true)]
        public long Id { get; set; }

        [Column(StringLength = 100)]
        public string Api { get; set; }

        [Column(DbType = "bigint")]
        public long? Count { get; set; }

        [Column(DbType = "datetime")]
        public DateTime? CreateTime { get; set; }

        [Column(DbType = "datetime")]
        public DateTime? Date { get; set; }

        /// <summary>
        /// 扩展信息
        /// </summary>
        [Column(StringLength = 100)]
        public string ExtendInfo { get; set; }

        [Column(DbType = "datetime")]
        public DateTime? UpdateTime { get; set; }

    }

}