资源简介
自动生成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
相关资源
- SpringBoot+H2+mybatis-plus59130
- 登录注册界面.zip48872
- 数字华容道
- SSM+Shiro+redis实现单点登陆
- jstl-api-1.2和jstl-impl-1.2
- mybatis连接oracle实例
- 基于MVC模式的会员管理系统
- 国内一家大型软件公司内部的正规软
- 仿windows记事本
- GUI银行管理系统
- 超市收银系统eclipse access大学课程设计
- 模拟ATM柜员机系统--连接数据库
- A*算法的2D演示(带源码)
- 代码审查表和代码审查实例
- 仿126 网易 163 邮箱 界面
- Tomcat6.x
- 简单的行编辑器
- 扫雷(MVC架构)
- 基于SSM+CXF构建的RESTFul webservice
- 302 Found
- window ping命令加时间并记录日志
- Spring+MyBatis企业应用实战第一二版的源
- springboot+rabbitmq项目demo(亲测可正常运
- jxbrowser 所有版本通用的破解包
- 2017年-传智播客-张志君老师-SpringBoo
- Blob.js+Export2Excel.js
- 机会路由源代码+仿真工具(SCORP)
- springboot+mybatis整合实现注册登录
- 基于web的图书馆运营系统
- POI中文帮助文档附带api手册.zip
评论
共有 条评论