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
- {
- /// <summary>
- /// 所有表的主键
- /// long返回到前端js的时候,会丢失精度,所以转成字符串
- /// </summary>
- public int Id { get; set; }
- }
- }
|