123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaProductModels
- {
- public partial class KxsMachineUnbind
- {
- public int Id { get; set; }
- public string ApplyNo { get; set; }
- public int MchId { get; set; }
- public string CreateBy { get; set; }
- public string Remark { get; set; }
- public int UserId { get; set; }
- public int BrandId { get; set; }
- public string PosSn { get; set; }
- public int Version { get; set; }
- public string DelFlag { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- }
- }
|