123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- using FreeSql.DataAnnotations;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace xicheji
- {
-
-
-
- public class WashRecord
- {
-
-
-
- [Column(IsIdentity = true)]
- public int Id { get; set; }
-
-
-
- public string DeviceId { get; set; } = string.Empty;
-
-
-
- public string CarNum { get; set; } = string.Empty;
-
-
-
- public DateTime StartTime { get; set; }
-
-
-
- public DateTime EndTime { get; set; }
-
-
-
- public int WashTime { get; set; }
-
-
-
- public int DryTime { get; set; }
-
-
-
- public int TotalWater { get; set; }
-
-
-
- public int TotalElectricity { get; set; }
-
-
-
- public int WaterPressure { get; set; }
- [Column(ServerTime = DateTimeKind.Local, CanUpdate = false)]
- public DateTime CreateTime { get; set; }
- }
- }
|