All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gitee.sunchenbin.mybatis.actable.command.SaveOrUpdateDataCommand Maven / Gradle / Ivy

Go to download

A.CTable is a Maven project based on Spring and Mybatis, which enhances the function of Mybatis

There is a newer version: 1.5.0.RELEASE
Show newest version
package com.gitee.sunchenbin.mybatis.actable.command;

import java.util.Map;

public class SaveOrUpdateDataCommand {

	private Integer id;

	private Map> tableMap;
	
	public SaveOrUpdateDataCommand(){
		
	}
	
	public SaveOrUpdateDataCommand(Map> tableMap){
		this.tableMap = tableMap;
	}

	public Integer getId() {
		return id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public Map> getTableMap() {
		return tableMap;
	}

	public void setTableMap(Map> tableMap) {
		this.tableMap = tableMap;
	}

}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy