1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- using MongoDB.Bson;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MES.Production.Entity.Model
- {
- public abstract class MongoModel
- {
- public ObjectId id { get; set; }
- public BsonDateTime created_at { get; set; }
- public BsonDateTime updated_at { get; set; }
- }
- public class CarParamDetails : MongoModel
- {
-
-
-
- public string carId
- {
- get; set;
- }
-
-
-
- public string hydraulic
- {
- get; set;
- }
-
-
-
- public string temperature
- {
- get; set;
- }
-
-
-
- public string voltage
- {
- get; set;
- }
-
-
-
- public string speed
- {
- get; set;
- }
-
-
-
- public BsonDateTime operatDate
- {
- get; set;
- }
- public string timestamp
- {
- get; set;
- }
-
-
-
- public int carReslut
- {
- get; set;
- }
- }
- }
|