package com.iplatform.model.po; import com.walker.jdbc.BaseMapper; import com.walker.jdbc.ResultSetUtils; import com.walker.jdbc.SqlAndParameters; import com.walker.jdbc.sqlgen.DeleteBuilder; import com.walker.jdbc.sqlgen.InsertBuilder; import com.walker.jdbc.sqlgen.SelectBuilder; import com.walker.jdbc.sqlgen.UpdateBuilder; import com.walker.jdbc.util.StringUtils; import org.springframework.jdbc.core.RowMapper; import java.sql.ResultSet; import java.sql.SQLException; import java.util.Map; /** * 表名:S_LOGIN_INFO * * @author genrator */ public class S_login_info_mapper extends S_login_info implements BaseMapper { // 序列化版本号 private static final long serialVersionUID = 1L; public static final RowMapper ROW_MAPPER = new S_login_infoRowMapper(); // 主键 public static final String INFO_ID = "info_id"; // 普通属性 public static final String USER_NAME = "user_name"; public static final String IPADDR = "ipaddr"; public static final String LOGIN_LOCATION = "login_location"; public static final String BROWSER = "browser"; public static final String OS = "os"; public static final String STATUS = "status"; public static final String MSG = "msg"; public static final String LOGIN_TIME = "login_time"; public static final String BASE_USER_ID = "base_user_id"; public static final String BASE_USER_NAME = "base_user_name"; public static final String PSN_CODE = "psn_code"; public static final String PHONE = "phone"; public static final String PHONE_DESEN = "phone_desen"; public static final String CLIENT_TYPE = "client_type"; public static final String GROUP_DEPT_ID = "group_dept_id"; public static final String PROVINCE_DEPT_ID = "province_dept_id"; public static final String CITY_DEPT_ID = "city_dept_id"; public static final String COUNTY_DEPT_ID = "county_dept_id"; public static final String GROUP_DEPT_NAME = "group_dept_name"; public static final String PROVINCE_DEPT_NAME = "province_dept_name"; public static final String CITY_DEPT_NAME = "city_dept_name"; public static final String COUNTY_DEPT_NAME = "county_dept_name"; public static final String BASE_DEPT_ID = "base_dept_id"; public static final String BASE_DEPT_NAME = "base_dept_name"; /** * 默认构造函数 */ public S_login_info_mapper(S_login_info s_login_info) { if (s_login_info == null) { throw new IllegalArgumentException("po参数不允许为空!"); } //主键 if (s_login_info.isset_info_id) { this.setInfo_id(s_login_info.getInfo_id()); } //普通属性 if (s_login_info.isset_user_name) { this.setUser_name(s_login_info.getUser_name()); } if (s_login_info.isset_ipaddr) { this.setIpaddr(s_login_info.getIpaddr()); } if (s_login_info.isset_login_location) { this.setLogin_location(s_login_info.getLogin_location()); } if (s_login_info.isset_browser) { this.setBrowser(s_login_info.getBrowser()); } if (s_login_info.isset_os) { this.setOs(s_login_info.getOs()); } if (s_login_info.isset_status) { this.setStatus(s_login_info.getStatus()); } if (s_login_info.isset_msg) { this.setMsg(s_login_info.getMsg()); } if (s_login_info.isset_login_time) { this.setLogin_time(s_login_info.getLogin_time()); } if (s_login_info.isset_base_user_id) { this.setBase_user_id(s_login_info.getBase_user_id()); } if (s_login_info.isset_base_user_name) { this.setBase_user_name(s_login_info.getBase_user_name()); } if (s_login_info.isset_psn_code) { this.setPsn_code(s_login_info.getPsn_code()); } if (s_login_info.isset_phone) { this.setPhone(s_login_info.getPhone()); } if (s_login_info.isset_phone_desen) { this.setPhone_desen(s_login_info.getPhone_desen()); } if (s_login_info.isset_client_type) { this.setClient_type(s_login_info.getClient_type()); } if (s_login_info.isset_group_dept_id) { this.setGroup_dept_id(s_login_info.getGroup_dept_id()); } if (s_login_info.isset_province_dept_id) { this.setProvince_dept_id(s_login_info.getProvince_dept_id()); } if (s_login_info.isset_city_dept_id) { this.setCity_dept_id(s_login_info.getCity_dept_id()); } if (s_login_info.isset_county_dept_id) { this.setCounty_dept_id(s_login_info.getCounty_dept_id()); } if (s_login_info.isset_group_dept_name) { this.setGroup_dept_name(s_login_info.getGroup_dept_name()); } if (s_login_info.isset_province_dept_name) { this.setProvince_dept_name(s_login_info.getProvince_dept_name()); } if (s_login_info.isset_city_dept_name) { this.setCity_dept_name(s_login_info.getCity_dept_name()); } if (s_login_info.isset_county_dept_name) { this.setCounty_dept_name(s_login_info.getCounty_dept_name()); } if (s_login_info.isset_base_dept_id) { this.setBase_dept_id(s_login_info.getBase_dept_id()); } if (s_login_info.isset_base_dept_name) { this.setBase_dept_name(s_login_info.getBase_dept_name()); } // 去掉,2022-09-07 // this.setDatabaseName_(s_login_info.getDatabaseName_()); } /** * 获取表名 */ @Override public String getTableName_() { String tableName = "s_login_info"; /** if (StringUtils.isNotEmpty(this.getDatabaseName_())) { return this.getDatabaseName_() + "." + tableName; } else { return tableName; } */ return tableName; } /** * 获取主键名称 */ @Override public String getPkName_() { return INFO_ID; } /** * 获取主键值 */ @Override public Object getPkValue_() { return this.getInfo_id(); } /** * 获取插入语句和参数 */ @Override public SqlAndParameters> getInsertSql_() { InsertBuilder ib = new InsertBuilder(this.getTableName_()); ib.set(INFO_ID, this.getInfo_id()); ib.set(USER_NAME, this.getUser_name(), this.isset_user_name); ib.set(IPADDR, this.getIpaddr(), this.isset_ipaddr); ib.set(LOGIN_LOCATION, this.getLogin_location(), this.isset_login_location); ib.set(BROWSER, this.getBrowser(), this.isset_browser); ib.set(OS, this.getOs(), this.isset_os); ib.set(STATUS, this.getStatus(), this.isset_status); ib.set(MSG, this.getMsg(), this.isset_msg); ib.set(LOGIN_TIME, this.getLogin_time(), this.isset_login_time); ib.set(BASE_USER_ID, this.getBase_user_id(), this.isset_base_user_id); ib.set(BASE_USER_NAME, this.getBase_user_name(), this.isset_base_user_name); ib.set(PSN_CODE, this.getPsn_code(), this.isset_psn_code); ib.set(PHONE, this.getPhone(), this.isset_phone); ib.set(PHONE_DESEN, this.getPhone_desen(), this.isset_phone_desen); ib.set(CLIENT_TYPE, this.getClient_type(), this.isset_client_type); ib.set(GROUP_DEPT_ID, this.getGroup_dept_id(), this.isset_group_dept_id); ib.set(PROVINCE_DEPT_ID, this.getProvince_dept_id(), this.isset_province_dept_id); ib.set(CITY_DEPT_ID, this.getCity_dept_id(), this.isset_city_dept_id); ib.set(COUNTY_DEPT_ID, this.getCounty_dept_id(), this.isset_county_dept_id); ib.set(GROUP_DEPT_NAME, this.getGroup_dept_name(), this.isset_group_dept_name); ib.set(PROVINCE_DEPT_NAME, this.getProvince_dept_name(), this.isset_province_dept_name); ib.set(CITY_DEPT_NAME, this.getCity_dept_name(), this.isset_city_dept_name); ib.set(COUNTY_DEPT_NAME, this.getCounty_dept_name(), this.isset_county_dept_name); ib.set(BASE_DEPT_ID, this.getBase_dept_id(), this.isset_base_dept_id); ib.set(BASE_DEPT_NAME, this.getBase_dept_name(), this.isset_base_dept_name); return ib.genMapSql(); } /** * 获取更新语句和参数 */ @Override public SqlAndParameters> getUpdateSql_() { UpdateBuilder ub = new UpdateBuilder(this.getTableName_()); ub.set(USER_NAME, this.getUser_name(), this.isset_user_name); ub.set(IPADDR, this.getIpaddr(), this.isset_ipaddr); ub.set(LOGIN_LOCATION, this.getLogin_location(), this.isset_login_location); ub.set(BROWSER, this.getBrowser(), this.isset_browser); ub.set(OS, this.getOs(), this.isset_os); ub.set(STATUS, this.getStatus(), this.isset_status); ub.set(MSG, this.getMsg(), this.isset_msg); ub.set(LOGIN_TIME, this.getLogin_time(), this.isset_login_time); ub.set(BASE_USER_ID, this.getBase_user_id(), this.isset_base_user_id); ub.set(BASE_USER_NAME, this.getBase_user_name(), this.isset_base_user_name); ub.set(PSN_CODE, this.getPsn_code(), this.isset_psn_code); ub.set(PHONE, this.getPhone(), this.isset_phone); ub.set(PHONE_DESEN, this.getPhone_desen(), this.isset_phone_desen); ub.set(CLIENT_TYPE, this.getClient_type(), this.isset_client_type); ub.set(GROUP_DEPT_ID, this.getGroup_dept_id(), this.isset_group_dept_id); ub.set(PROVINCE_DEPT_ID, this.getProvince_dept_id(), this.isset_province_dept_id); ub.set(CITY_DEPT_ID, this.getCity_dept_id(), this.isset_city_dept_id); ub.set(COUNTY_DEPT_ID, this.getCounty_dept_id(), this.isset_county_dept_id); ub.set(GROUP_DEPT_NAME, this.getGroup_dept_name(), this.isset_group_dept_name); ub.set(PROVINCE_DEPT_NAME, this.getProvince_dept_name(), this.isset_province_dept_name); ub.set(CITY_DEPT_NAME, this.getCity_dept_name(), this.isset_city_dept_name); ub.set(COUNTY_DEPT_NAME, this.getCounty_dept_name(), this.isset_county_dept_name); ub.set(BASE_DEPT_ID, this.getBase_dept_id(), this.isset_base_dept_id); ub.set(BASE_DEPT_NAME, this.getBase_dept_name(), this.isset_base_dept_name); ub.where(this.getPkName_(), this.getPkValue_()); return ub.genMapSql(); } /** * 获取更新语句和参数 */ @Override public SqlAndParameters> getUpdateSql_(String where, Map parameters) { UpdateBuilder ub = new UpdateBuilder(this.getTableName_()); ub.set(USER_NAME, this.getUser_name(), this.isset_user_name); ub.set(IPADDR, this.getIpaddr(), this.isset_ipaddr); ub.set(LOGIN_LOCATION, this.getLogin_location(), this.isset_login_location); ub.set(BROWSER, this.getBrowser(), this.isset_browser); ub.set(OS, this.getOs(), this.isset_os); ub.set(STATUS, this.getStatus(), this.isset_status); ub.set(MSG, this.getMsg(), this.isset_msg); ub.set(LOGIN_TIME, this.getLogin_time(), this.isset_login_time); ub.set(BASE_USER_ID, this.getBase_user_id(), this.isset_base_user_id); ub.set(BASE_USER_NAME, this.getBase_user_name(), this.isset_base_user_name); ub.set(PSN_CODE, this.getPsn_code(), this.isset_psn_code); ub.set(PHONE, this.getPhone(), this.isset_phone); ub.set(PHONE_DESEN, this.getPhone_desen(), this.isset_phone_desen); ub.set(CLIENT_TYPE, this.getClient_type(), this.isset_client_type); ub.set(GROUP_DEPT_ID, this.getGroup_dept_id(), this.isset_group_dept_id); ub.set(PROVINCE_DEPT_ID, this.getProvince_dept_id(), this.isset_province_dept_id); ub.set(CITY_DEPT_ID, this.getCity_dept_id(), this.isset_city_dept_id); ub.set(COUNTY_DEPT_ID, this.getCounty_dept_id(), this.isset_county_dept_id); ub.set(GROUP_DEPT_NAME, this.getGroup_dept_name(), this.isset_group_dept_name); ub.set(PROVINCE_DEPT_NAME, this.getProvince_dept_name(), this.isset_province_dept_name); ub.set(CITY_DEPT_NAME, this.getCity_dept_name(), this.isset_city_dept_name); ub.set(COUNTY_DEPT_NAME, this.getCounty_dept_name(), this.isset_county_dept_name); ub.set(BASE_DEPT_ID, this.getBase_dept_id(), this.isset_base_dept_id); ub.set(BASE_DEPT_NAME, this.getBase_dept_name(), this.isset_base_dept_name); return ub.genMapSql(where, parameters); } /** * 获取更新语句和参数 */ @Override public SqlAndParameters getUpdateSql_(String where, Object[] parameters) { UpdateBuilder ub = new UpdateBuilder(this.getTableName_()); ub.set(USER_NAME, this.getUser_name(), this.isset_user_name); ub.set(IPADDR, this.getIpaddr(), this.isset_ipaddr); ub.set(LOGIN_LOCATION, this.getLogin_location(), this.isset_login_location); ub.set(BROWSER, this.getBrowser(), this.isset_browser); ub.set(OS, this.getOs(), this.isset_os); ub.set(STATUS, this.getStatus(), this.isset_status); ub.set(MSG, this.getMsg(), this.isset_msg); ub.set(LOGIN_TIME, this.getLogin_time(), this.isset_login_time); ub.set(BASE_USER_ID, this.getBase_user_id(), this.isset_base_user_id); ub.set(BASE_USER_NAME, this.getBase_user_name(), this.isset_base_user_name); ub.set(PSN_CODE, this.getPsn_code(), this.isset_psn_code); ub.set(PHONE, this.getPhone(), this.isset_phone); ub.set(PHONE_DESEN, this.getPhone_desen(), this.isset_phone_desen); ub.set(CLIENT_TYPE, this.getClient_type(), this.isset_client_type); ub.set(GROUP_DEPT_ID, this.getGroup_dept_id(), this.isset_group_dept_id); ub.set(PROVINCE_DEPT_ID, this.getProvince_dept_id(), this.isset_province_dept_id); ub.set(CITY_DEPT_ID, this.getCity_dept_id(), this.isset_city_dept_id); ub.set(COUNTY_DEPT_ID, this.getCounty_dept_id(), this.isset_county_dept_id); ub.set(GROUP_DEPT_NAME, this.getGroup_dept_name(), this.isset_group_dept_name); ub.set(PROVINCE_DEPT_NAME, this.getProvince_dept_name(), this.isset_province_dept_name); ub.set(CITY_DEPT_NAME, this.getCity_dept_name(), this.isset_city_dept_name); ub.set(COUNTY_DEPT_NAME, this.getCounty_dept_name(), this.isset_county_dept_name); ub.set(BASE_DEPT_ID, this.getBase_dept_id(), this.isset_base_dept_id); ub.set(BASE_DEPT_NAME, this.getBase_dept_name(), this.isset_base_dept_name); return ub.genArraySql(where, parameters); } /** * 获取删除语句和参数 */ @Override public SqlAndParameters> getDeleteSql_() { DeleteBuilder db = new DeleteBuilder(this.getTableName_()); db.where(this.getPkName_(), this.getPkValue_()); return db.genMapSql(); } /** * 获取删除语句和参数 */ @Override public SqlAndParameters> getDeleteSql_(String where, Map parameters) { DeleteBuilder db = new DeleteBuilder(this.getTableName_()); return db.genMapSql(where, parameters); } /** * 获取删除语句和参数 */ @Override public SqlAndParameters getDeleteSql_(String where, Object[] parameters) { DeleteBuilder db = new DeleteBuilder(this.getTableName_()); return db.genArraySql(where, parameters); } /** * 获取单行查询语句和参数 */ @Override public SqlAndParameters> getSingleSql_() { SelectBuilder sb = new SelectBuilder(this.getTableName_()); sb.where(this.getPkName_(), this.getPkValue_()); return sb.genMapSql(); } /** * 获取查询语句和参数 */ @Override public SqlAndParameters> getSelectSql_(String where, Map parameters) { return new SqlAndParameters<>("select info_id, user_name, ipaddr, login_location, browser, os, status, msg, login_time, base_user_id, base_user_name, psn_code, phone, phone_desen, client_type, group_dept_id, province_dept_id, city_dept_id, county_dept_id, group_dept_name, province_dept_name, city_dept_name, county_dept_name, base_dept_id, base_dept_name from " + this.getTableName_() + " " + where, parameters); } /** * 获取查询语句和参数 */ @Override public SqlAndParameters getSelectSql_(String where, Object[] parameters) { return new SqlAndParameters<>("select info_id, user_name, ipaddr, login_location, browser, os, status, msg, login_time, base_user_id, base_user_name, psn_code, phone, phone_desen, client_type, group_dept_id, province_dept_id, city_dept_id, county_dept_id, group_dept_name, province_dept_name, city_dept_name, county_dept_name, base_dept_id, base_dept_name from " + this.getTableName_() + " " + where, parameters); } /** * 将resultset的一行转化为po */ @Override public S_login_info mapRow(ResultSet rs, int i) throws SQLException { return ROW_MAPPER.mapRow(rs, i); } /** * 克隆 */ public S_login_info toS_login_info() { return super.$clone(); } } /** * s_login_info RowMapper * * @author genrator */ class S_login_infoRowMapper implements RowMapper { @Override public S_login_info mapRow(ResultSet rs, int i) throws SQLException { ResultSetUtils resultSetUtils = new ResultSetUtils(); S_login_info s_login_info = new S_login_info(); Integer columnIndex; //主键 columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.INFO_ID); if (columnIndex > 0) { s_login_info.setInfo_id(rs.getLong(columnIndex)); } //普通属性 columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.USER_NAME); if (columnIndex > 0) { s_login_info.setUser_name(rs.getString(columnIndex)); } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.IPADDR); if (columnIndex > 0) { s_login_info.setIpaddr(rs.getString(columnIndex)); } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.LOGIN_LOCATION); if (columnIndex > 0) { s_login_info.setLogin_location(rs.getString(columnIndex)); } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.BROWSER); if (columnIndex > 0) { s_login_info.setBrowser(rs.getString(columnIndex)); } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.OS); if (columnIndex > 0) { s_login_info.setOs(rs.getString(columnIndex)); } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.STATUS); if (columnIndex > 0) { s_login_info.setStatus(rs.getString(columnIndex)); } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.MSG); if (columnIndex > 0) { s_login_info.setMsg(rs.getString(columnIndex)); } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.LOGIN_TIME); if (columnIndex > 0) { if (rs.getBigDecimal(columnIndex) == null) { s_login_info.setLogin_time(null); } else { s_login_info.setLogin_time(rs.getLong(columnIndex)); } } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.BASE_USER_ID); if (columnIndex > 0) { if (rs.getBigDecimal(columnIndex) == null) { s_login_info.setBase_user_id(null); } else { s_login_info.setBase_user_id(rs.getLong(columnIndex)); } } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.BASE_USER_NAME); if (columnIndex > 0) { s_login_info.setBase_user_name(rs.getString(columnIndex)); } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.PSN_CODE); if (columnIndex > 0) { s_login_info.setPsn_code(rs.getString(columnIndex)); } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.PHONE); if (columnIndex > 0) { s_login_info.setPhone(rs.getString(columnIndex)); } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.PHONE_DESEN); if (columnIndex > 0) { s_login_info.setPhone_desen(rs.getString(columnIndex)); } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.CLIENT_TYPE); if (columnIndex > 0) { s_login_info.setClient_type(rs.getString(columnIndex)); } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.GROUP_DEPT_ID); if (columnIndex > 0) { if (rs.getBigDecimal(columnIndex) == null) { s_login_info.setGroup_dept_id(null); } else { s_login_info.setGroup_dept_id(rs.getLong(columnIndex)); } } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.PROVINCE_DEPT_ID); if (columnIndex > 0) { if (rs.getBigDecimal(columnIndex) == null) { s_login_info.setProvince_dept_id(null); } else { s_login_info.setProvince_dept_id(rs.getLong(columnIndex)); } } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.CITY_DEPT_ID); if (columnIndex > 0) { if (rs.getBigDecimal(columnIndex) == null) { s_login_info.setCity_dept_id(null); } else { s_login_info.setCity_dept_id(rs.getLong(columnIndex)); } } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.COUNTY_DEPT_ID); if (columnIndex > 0) { if (rs.getBigDecimal(columnIndex) == null) { s_login_info.setCounty_dept_id(null); } else { s_login_info.setCounty_dept_id(rs.getLong(columnIndex)); } } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.GROUP_DEPT_NAME); if (columnIndex > 0) { s_login_info.setGroup_dept_name(rs.getString(columnIndex)); } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.PROVINCE_DEPT_NAME); if (columnIndex > 0) { s_login_info.setProvince_dept_name(rs.getString(columnIndex)); } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.CITY_DEPT_NAME); if (columnIndex > 0) { s_login_info.setCity_dept_name(rs.getString(columnIndex)); } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.COUNTY_DEPT_NAME); if (columnIndex > 0) { s_login_info.setCounty_dept_name(rs.getString(columnIndex)); } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.BASE_DEPT_ID); if (columnIndex > 0) { if (rs.getBigDecimal(columnIndex) == null) { s_login_info.setBase_dept_id(null); } else { s_login_info.setBase_dept_id(rs.getLong(columnIndex)); } } columnIndex = resultSetUtils.findColumn(rs, S_login_info_mapper.BASE_DEPT_NAME); if (columnIndex > 0) { s_login_info.setBase_dept_name(rs.getString(columnIndex)); } return s_login_info; } }