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