123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.PxcModels
- {
- public partial class RadioCardInfo
- {
- public int Id { get; set; }
- public int Sort { get; set; }
- public int Status { get; set; }
- public int Version { get; set; }
- public DateTime? CreateDate { get; set; }
- public DateTime? UpdateDate { get; set; }
- public int UserId { get; set; }
- public string BrhUserId { get; set; }
- public string BrhName { get; set; }
- public string OpenTime { get; set; }
- public string OprInviteCode { get; set; }
- public string ProvincialCompany { get; set; }
- public string ChannelName { get; set; }
- public string ChannelCode { get; set; }
- public string Role { get; set; }
- public string Gender { get; set; }
- public string IdNo { get; set; }
- public string Mobile { get; set; }
- public string OprName { get; set; }
- public string JobStatus { get; set; }
- public string JobId { get; set; }
- }
- }
|