1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.PxcModels
- {
- public partial class ChangeTypeKind
- {
- 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 string Name { get; set; }
- public string Operator { get; set; }
- }
- }
|