2024-11-03 11:21:47 +08:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace SiteManagementSystem_SoftwareEngineering_.Entity
|
|
|
|
|
{
|
2024-11-04 22:26:45 +08:00
|
|
|
|
public class FieldRecord
|
2024-11-03 11:21:47 +08:00
|
|
|
|
{
|
|
|
|
|
[Key]
|
|
|
|
|
public Guid Uid { get; set; }
|
|
|
|
|
//[Key]
|
|
|
|
|
public Guid Fid { get; set; }
|
|
|
|
|
public DateTime StartTime { get; set; }
|
|
|
|
|
public DateTime EndTime { get; set; }
|
|
|
|
|
// other properties
|
|
|
|
|
}
|
|
|
|
|
}
|