12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaProductModels
- {
- public partial class KxsMachineTrack
- {
- public int Id { get; set; }
- public int ChangeType { get; set; }
- public int TrackType { get; set; }
- public int BrandId { get; set; }
- public int MachineId { get; set; }
- public int AfterUserId { get; set; }
- public int BeforeUserId { get; set; }
- public int Version { get; set; }
- public int DelFlag { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- public int PartnerId { get; set; }
- public string PosSn { get; set; }
- public int BeforeWhsId { get; set; }
- public int AfterWhsId { get; set; }
- public string Remark { get; set; }
- }
- }
|