using System; using System.Collections.Generic; using Newtonsoft.Json; namespace YZXYH.Repository.Models { [Serializable] public partial class VocationInfo { public string Id { get; set; } public string VocationName { get; set; } public string VocationType { get; set; } public string SortNo { get; set; } public string IsLocked { get; set; } public string Remark { get; set; } } }