17 lines
378 B
C#
17 lines
378 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ShardingCore.Test3x.Domain.Entities
|
|
{
|
|
public class LogDayLong
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string LogLevel { get; set; }
|
|
public string LogBody { get; set; }
|
|
public long LogTime { get; set; }
|
|
}
|
|
}
|