资源简介
自动生成MyBatis的实体类、实体映射XML文件、Mapper、Service、ServiceImpl、Controller,可以生成全套文件,并且抽了模板。。
代码片段和文件信息
package com.jm.base;
import java.io.Serializable;
/**
* Created with IntelliJ IDEA.
* To change this template use File | Settings | File Templates.
*/
public class AjaxList implements Serializable {
private int counts;
private String msg;
private boolean success;
private object data;
private int errCode;
public AjaxList() {
}
public AjaxList(int counts object data) {
this.counts = counts;
this.data = data;
}
public AjaxList(int counts String msg int errCode boolean success object data) {
this.counts = counts;
this.msg = msg;
this.success = success;
this.data = data;
this.errCode = errCode;
}
public AjaxList(int counts String msg boolean success object data) {
this.counts = counts;
this.msg = msg;
this.success = success;
this.data = data;
}
public static AjaxList createSuccess(int counts) {
return new AjaxList(counts ““ true null);
}
public static AjaxList createSuccess(String msg) {
return new AjaxList(1 msg true null);
}
public static AjaxList createSuccess(String msg object data) {
return new AjaxList(0 msg true data);
}
public static AjaxList createSuccess(int count String msg object data) {
return new AjaxList(count msg true data);
}
public static AjaxList createError(String msg int errCode) {
return new AjaxList(0 msg errCode false null);
}
public static AjaxList createError(String msg) {
return new AjaxList(0 msg false null);
}
public static AjaxList createError(String msg object data) {
return new AjaxList(0 msg false data);
}
public static AjaxList createError(String msg int errCode object data) {
return new AjaxList(0 msg errCodefalse data);
}
public int getCounts() {
return counts;
}
public object getData() {
return data;
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
public boolean isSuccess() {
return success;
}
public void setSuccess(boolean success) {
this.success = success;
}
public void setData(object data) {
this.data = data;
}
public int getErrCode() {
return errCode;
}
public void setErrCode(int errCode) {
this.errCode = errCode;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-12-29 16:58 ba
文件 2625 2018-12-26 13:50 ba
文件 322 2018-12-26 13:58 ba
文件 152 2018-12-26 15:48 ba
文件 58 2018-12-26 13:58 ba
目录 0 2018-12-30 10:54 ba
文件 29110 2018-12-30 10:54 ba
目录 0 2018-12-29 16:58 ba
文件 546 2018-12-29 16:58 ba
目录 0 2018-12-29 16:58 ba
文件 2542 2018-12-29 16:58 ba
目录 0 2018-12-27 11:04 ba
文件 1152 2018-12-27 09:39 ba
文件 3144 2018-12-27 11:04 ba
文件 1935 2018-12-27 09:34 ba
文件 382 2018-12-27 09:34 ba
文件 7632 2018-12-27 09:35 ba
相关资源
- 计算机图形学,内含DDA画直线,画圆
- “图书信息管理系统”图书信息包括
- 蓝桥杯 练习系统所有题包括VIP题
- 需求规格说明书-新闻发布系统
- 基于SSH框架的BookShop网上书店实现
- 尚硅谷spring boot资源,带代码。
- Robocode 基础坦克胜率还可以
- swing实现的猫版聊天室
- 网站验证码代码的使用
- mybatis-generator-config_1_0.dtd
- 防止Socket传递汉字乱码
- 操作系统模拟.rar
- 2019校园招聘算法笔试题
- mybatis-generator,一对一,一对多,批量
- pix4d 4.4.12安装与破解带注册机
- 中科大数据结构与数据库课件
- 诺基亚S60通用模拟器
- 车辆管理系统.zip
- 全国银行省市支行级联最新
- SpringBoot集成Redis,Webservice,kafka,q
- 一个完整项目详细设计说明书
- 汇编十六进制排序
- 利用哈夫曼编码进行通信可以大大提
- MyBatis-讲义-2.2.docx
- 百度地图api-ak
- 基于vue开发的树形菜单
- dobbyscan一个非常快速基于密度的地理
- 几乎完整的前端面试问题答案
-
typesc
riptvue开发的日历组件使用swi - processing二维温度场
评论
共有 条评论