IdParam.cs 430 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.Text;
  5. using YiSha.Util;
  6. using Newtonsoft.Json;
  7. namespace YiSha.Model.Param
  8. {
  9. public class IdParam
  10. {
  11. /// <summary>
  12. /// 所有表的主键
  13. /// long返回到前端js的时候,会丢失精度,所以转成字符串
  14. /// </summary>
  15. public int Id { get; set; }
  16. }
  17. }