- using System;
- using System.Collections.Generic;
- using Newtonsoft.Json;
- namespace YZXYH.Repository.Models
- {
- [Serializable]
- public partial class VocationUser
- {
- public string Id { get; set; }
- public string VocationNo { get; set; }
- public string UserNo { get; set; }
- public string IsLocked { get; set; }
- public string SortNo { get; set; }
- }
- }
|