You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
886 B
37 lines
886 B
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; }
|
|
|
|
}
|
|
|
|
}
|
|
|