12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaProductModels
- {
- public partial class KxsTicket
- {
- public int Id { get; set; }
- public int PartnerId { get; set; }
- public int LeaderId { get; set; }
- public int Status { get; set; }
- public int OrderId { get; set; }
- public string TicketAllotPath { get; set; }
- public int TicketType { get; set; }
- public string TicketCode { get; set; }
- public int UserId { get; set; }
- public int Version { get; set; }
- public int DelFlag { get; set; }
- public DateTime? UpdateTime { get; set; }
- public DateTime? CreateTime { get; set; }
- }
- }
|