1234567891011121314151617181920212223242526272829303132 |
- namespace Central.Control.Domain
- {
- using System;
- using System.Collections.Generic;
-
- public partial class YW_CarPurchaser
- {
- public System.Guid ID { get; set; }
- public string carId { get; set; }
- public string carBar { get; set; }
- public string imei { get; set; }
- public string userName { get; set; }
- public string userTel { get; set; }
- public string userAddress { get; set; }
- public string userCode { get; set; }
- public Nullable<System.DateTime> addDate { get; set; }
- public string addName { get; set; }
- public Nullable<System.DateTime> updateDate { get; set; }
- public string updateName { get; set; }
- public string distributorsID { get; set; }
- public Nullable<System.DateTime> SaleDate { get; set; }
- }
- }
|