1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaProductModels
- {
- public partial class KxsMachineThali
- {
- public int Id { get; set; }
- public int MonthTime { get; set; }
- public string PosSn { get; set; }
- public int BrandId { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- public int DelFlag { get; set; }
- public int Version { get; set; }
- }
- }
|