This commit is contained in:
2021-08-19 21:46:35 +00:00
parent a8335cfd7d
commit 5bb0d6fa04
6 changed files with 290 additions and 142 deletions

View File

@@ -10,22 +10,26 @@ namespace AyaNova.Models
//NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal,
//otherwise the server will call it an invalid record if the field isn't sent from client
public class UnitMeterReading
public class UnitMeterReading
{
public long Id { get; set; }
public uint Concurrency { get; set; }
public uint Concurrency { get; set; }
public string Description { get; set; }
public long Meter { get; set; }
public long Meter { get; set; }
public DateTime MeterDate { get; set; }
public long UnitId { get; set; }
public long? WorkOrderItemId { get; set; }
public long? WorkOrderItemId { get; set; }
[NotMapped]
public string UnitViz { get; set; }
[NotMapped]
public string WorkOrderViz { get; set; }
public UnitMeterReading()
{
}
}//eoc