using System;
using System.Collections.Generic;

namespace MySystem.JavaUserModels
{
    public partial class KxsChangeType
    {
        public int Id { get; set; }
        public int Sort { get; set; }
        public string Kind { get; set; }
        public string Name { get; set; }
        public int Version { get; set; }
        public int DelFlag { get; set; }
        public DateTime? UpdateTime { get; set; }
        public DateTime? CreateTime { get; set; }
    }
}