Date = ((DateTime)p.SellDate).ToShortDateString(), // 日期型 DateTime.Parse(PpEffecDate);(里面是字符串)
jsonbill.HandDate = ((DateTime)bill.Hand_Date).ToString("yyyy-MM-dd");
Location = (int)p.Location, // 整型 int.Parse()里面是字符串
Location = (decimal)p.Location, // 小数型 decimal.Parse()里面是字符串