1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NextTreatMesDemo.Models
- {
- public class Re_ProductionRecord
- {
- public string userId { get; set; }
- public string taskId { get; set; }
- public string deviceId { get; set; }
- public string productionType { get; set; }
- public string creationTime { get; set; }
- public Discriptin[] description { get; set; }
- }
- public class Discriptin
- {
- public string key;
- public string value;
- }
- }
|