2022-10-24 22:17:38 +08:00
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|