| 1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using Newtonsoft.Json;
- namespace YZXYH.Repository.Models
- {
- [Serializable]
- public partial class HobbyInfo
- {
- public string Id { get; set; }
- public string HobbyName { get; set; }
- public string HobbyType { get; set; }
- public string SortNo { get; set; }
- public string IsLocked { get; set; }
- public string Remark { get; set; }
- }
- }
|