1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Repository.Entiies
- {
- public class Information
- {
- public Guid Id { get; set; }
- public string OperatorCode { get; set; }
- public string ProCode { get; set; }
- public int SpendTime { get; set; }
- public DateTime CreateTime { get; set; }
- }
- }
|