16 lines
333 B
C#
16 lines
333 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ShardingCore.Test5x.Domain.Entities
|
|
{
|
|
public class LogMonthLong
|
|
{
|
|
public string Id { get; set; }
|
|
public string Body { get; set; }
|
|
public long LogTime { get; set; }
|
|
}
|
|
}
|