12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Text;
- using YiSha.Util;
- using Newtonsoft.Json;
- namespace YiSha.Model.Param
- {
- public class IdParam
- {
-
-
-
-
- public int Id { get; set; }
- }
- }
|