由于项目用到了JSON格式的数据,在网上搜索到了阿里的fastjson比较好用,特此记录fastjson用法,以备以后查询之用. decode: 首先创建一个JSON解析类: public class JsonParser { private int devid; public int getDevid() { return devid; } public void setDevid(int devid) { this.devid = devid; } } 在需要用到解析的地方创建一个对应的对象…
create database ssm default character set utf8; use ssm; create table flower( id int(10) primary key auto_increment comment'编号', name VARCHAR(30) not null comment '花名', price float not null comment '价格', production varchar(30) not null comment '原产地'…
use Shop ,) )) insert into DictBase select '包装' UNION ALL select '价格' UNION ALL select '品牌' 工厂方法模式 IDAL层(添加一个IDictBase接口,在里面定义一个方法) using System; using System.Collections.Generic; using System.Data; namespace Letao.IDAL { /// <summary> /// 接口:类别字典键…