using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace JiangSu.Models
{
public class Model
{
public Model() { }
///
/// 主键ID
///
public long id { set; get; }
///
/// 名称
///
public string name { set; get; }
///
/// JSON数据
///
public string json { set; get; }
}
}