sharding/samples/Sample.AutoCreateIfPresent/AreaDevice.cs

12 lines
266 B
C#
Raw Permalink Normal View History

using System.ComponentModel.DataAnnotations.Schema;
namespace Sample.AutoCreateIfPresent
2022-05-17 17:20:03 +08:00
{
public class AreaDevice
{
public string Id { get; set; }
public DateTime CreateTime { get; set; }
public string Area { get; set; }
}
}