2021-03-22 14:43:36 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using ShardingCore.Core;
|
|
|
|
|
|
|
|
|
|
namespace Sample.MySql.Domain.Entities
|
|
|
|
|
{
|
2022-02-21 22:51:53 +08:00
|
|
|
|
public class SysUserLogByMonth
|
2021-03-22 14:43:36 +08:00
|
|
|
|
{
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
public DateTime Time { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|