1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.PxcModels
- {
- public partial class PosChannelSet
- {
- 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 SnCount { get; set; }
- public int BrandId { get; set; }
- public string ChannelNo { get; set; }
- public int UserId { get; set; }
- public int Kind { get; set; }
- }
- }
|