dev-discount
parent
45d1402bf3
commit
e5a0f9d777
@ -1,178 +0,0 @@ |
||||
package com.hai.dao; |
||||
|
||||
import com.hai.entity.BsDevice; |
||||
import com.hai.entity.BsDeviceExample; |
||||
import java.util.List; |
||||
import org.apache.ibatis.annotations.Delete; |
||||
import org.apache.ibatis.annotations.DeleteProvider; |
||||
import org.apache.ibatis.annotations.Insert; |
||||
import org.apache.ibatis.annotations.InsertProvider; |
||||
import org.apache.ibatis.annotations.Options; |
||||
import org.apache.ibatis.annotations.Param; |
||||
import org.apache.ibatis.annotations.Result; |
||||
import org.apache.ibatis.annotations.Results; |
||||
import org.apache.ibatis.annotations.Select; |
||||
import org.apache.ibatis.annotations.SelectProvider; |
||||
import org.apache.ibatis.annotations.Update; |
||||
import org.apache.ibatis.annotations.UpdateProvider; |
||||
import org.apache.ibatis.type.JdbcType; |
||||
import org.springframework.stereotype.Repository; |
||||
|
||||
/** |
||||
* |
||||
* 代码由工具生成,请勿修改!!! |
||||
* 如果需要扩展请在其父类进行扩展 |
||||
* |
||||
**/ |
||||
@Repository |
||||
public interface BsDeviceMapper extends BsDeviceMapperExt { |
||||
@SelectProvider(type=BsDeviceSqlProvider.class, method="countByExample") |
||||
long countByExample(BsDeviceExample example); |
||||
|
||||
@DeleteProvider(type=BsDeviceSqlProvider.class, method="deleteByExample") |
||||
int deleteByExample(BsDeviceExample example); |
||||
|
||||
@Delete({ |
||||
"delete from bs_device", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
int deleteByPrimaryKey(Long id); |
||||
|
||||
@Insert({ |
||||
"insert into bs_device (company_id, company_name, ", |
||||
"agent_id, agent_name, ", |
||||
"salesman_id, salesman_name, ", |
||||
"mer_id, mer_name, store_id, ", |
||||
"store_name, device_type, ", |
||||
"device_no, device_imsi, ", |
||||
"device_iccid, `status`, ", |
||||
"bind_status, bind_time, ", |
||||
"op_user_id, op_user_name, ", |
||||
"create_time, update_time, ", |
||||
"ext_1, ext_2, ext_3)", |
||||
"values (#{companyId,jdbcType=BIGINT}, #{companyName,jdbcType=VARCHAR}, ", |
||||
"#{agentId,jdbcType=BIGINT}, #{agentName,jdbcType=VARCHAR}, ", |
||||
"#{salesmanId,jdbcType=BIGINT}, #{salesmanName,jdbcType=VARCHAR}, ", |
||||
"#{merId,jdbcType=BIGINT}, #{merName,jdbcType=VARCHAR}, #{storeId,jdbcType=BIGINT}, ", |
||||
"#{storeName,jdbcType=VARCHAR}, #{deviceType,jdbcType=INTEGER}, ", |
||||
"#{deviceNo,jdbcType=VARCHAR}, #{deviceImsi,jdbcType=VARCHAR}, ", |
||||
"#{deviceIccid,jdbcType=VARCHAR}, #{status,jdbcType=INTEGER}, ", |
||||
"#{bindStatus,jdbcType=BIT}, #{bindTime,jdbcType=TIMESTAMP}, ", |
||||
"#{opUserId,jdbcType=BIGINT}, #{opUserName,jdbcType=VARCHAR}, ", |
||||
"#{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}, ", |
||||
"#{ext1,jdbcType=VARCHAR}, #{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})" |
||||
}) |
||||
@Options(useGeneratedKeys=true,keyProperty="id") |
||||
int insert(BsDevice record); |
||||
|
||||
@InsertProvider(type=BsDeviceSqlProvider.class, method="insertSelective") |
||||
@Options(useGeneratedKeys=true,keyProperty="id") |
||||
int insertSelective(BsDevice record); |
||||
|
||||
@SelectProvider(type=BsDeviceSqlProvider.class, method="selectByExample") |
||||
@Results({ |
||||
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), |
||||
@Result(column="company_id", property="companyId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="company_name", property="companyName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="agent_id", property="agentId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="agent_name", property="agentName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="salesman_id", property="salesmanId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="salesman_name", property="salesmanName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="mer_id", property="merId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="mer_name", property="merName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="store_id", property="storeId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="store_name", property="storeName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="device_type", property="deviceType", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="device_no", property="deviceNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="device_imsi", property="deviceImsi", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="device_iccid", property="deviceIccid", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="bind_status", property="bindStatus", jdbcType=JdbcType.BIT), |
||||
@Result(column="bind_time", property="bindTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="op_user_id", property="opUserId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="op_user_name", property="opUserName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) |
||||
}) |
||||
List<BsDevice> selectByExample(BsDeviceExample example); |
||||
|
||||
@Select({ |
||||
"select", |
||||
"id, company_id, company_name, agent_id, agent_name, salesman_id, salesman_name, ", |
||||
"mer_id, mer_name, store_id, store_name, device_type, device_no, device_imsi, ", |
||||
"device_iccid, `status`, bind_status, bind_time, op_user_id, op_user_name, create_time, ", |
||||
"update_time, ext_1, ext_2, ext_3", |
||||
"from bs_device", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
@Results({ |
||||
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), |
||||
@Result(column="company_id", property="companyId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="company_name", property="companyName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="agent_id", property="agentId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="agent_name", property="agentName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="salesman_id", property="salesmanId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="salesman_name", property="salesmanName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="mer_id", property="merId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="mer_name", property="merName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="store_id", property="storeId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="store_name", property="storeName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="device_type", property="deviceType", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="device_no", property="deviceNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="device_imsi", property="deviceImsi", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="device_iccid", property="deviceIccid", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="bind_status", property="bindStatus", jdbcType=JdbcType.BIT), |
||||
@Result(column="bind_time", property="bindTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="op_user_id", property="opUserId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="op_user_name", property="opUserName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="update_time", property="updateTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) |
||||
}) |
||||
BsDevice selectByPrimaryKey(Long id); |
||||
|
||||
@UpdateProvider(type=BsDeviceSqlProvider.class, method="updateByExampleSelective") |
||||
int updateByExampleSelective(@Param("record") BsDevice record, @Param("example") BsDeviceExample example); |
||||
|
||||
@UpdateProvider(type=BsDeviceSqlProvider.class, method="updateByExample") |
||||
int updateByExample(@Param("record") BsDevice record, @Param("example") BsDeviceExample example); |
||||
|
||||
@UpdateProvider(type=BsDeviceSqlProvider.class, method="updateByPrimaryKeySelective") |
||||
int updateByPrimaryKeySelective(BsDevice record); |
||||
|
||||
@Update({ |
||||
"update bs_device", |
||||
"set company_id = #{companyId,jdbcType=BIGINT},", |
||||
"company_name = #{companyName,jdbcType=VARCHAR},", |
||||
"agent_id = #{agentId,jdbcType=BIGINT},", |
||||
"agent_name = #{agentName,jdbcType=VARCHAR},", |
||||
"salesman_id = #{salesmanId,jdbcType=BIGINT},", |
||||
"salesman_name = #{salesmanName,jdbcType=VARCHAR},", |
||||
"mer_id = #{merId,jdbcType=BIGINT},", |
||||
"mer_name = #{merName,jdbcType=VARCHAR},", |
||||
"store_id = #{storeId,jdbcType=BIGINT},", |
||||
"store_name = #{storeName,jdbcType=VARCHAR},", |
||||
"device_type = #{deviceType,jdbcType=INTEGER},", |
||||
"device_no = #{deviceNo,jdbcType=VARCHAR},", |
||||
"device_imsi = #{deviceImsi,jdbcType=VARCHAR},", |
||||
"device_iccid = #{deviceIccid,jdbcType=VARCHAR},", |
||||
"`status` = #{status,jdbcType=INTEGER},", |
||||
"bind_status = #{bindStatus,jdbcType=BIT},", |
||||
"bind_time = #{bindTime,jdbcType=TIMESTAMP},", |
||||
"op_user_id = #{opUserId,jdbcType=BIGINT},", |
||||
"op_user_name = #{opUserName,jdbcType=VARCHAR},", |
||||
"create_time = #{createTime,jdbcType=TIMESTAMP},", |
||||
"update_time = #{updateTime,jdbcType=TIMESTAMP},", |
||||
"ext_1 = #{ext1,jdbcType=VARCHAR},", |
||||
"ext_2 = #{ext2,jdbcType=VARCHAR},", |
||||
"ext_3 = #{ext3,jdbcType=VARCHAR}", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
int updateByPrimaryKey(BsDevice record); |
||||
} |
@ -1,7 +0,0 @@ |
||||
package com.hai.dao; |
||||
|
||||
/** |
||||
* mapper扩展类 |
||||
*/ |
||||
public interface BsDeviceMapperExt { |
||||
} |
@ -1,175 +0,0 @@ |
||||
package com.hai.dao; |
||||
|
||||
import com.hai.entity.BsDeviceOrderAssign; |
||||
import com.hai.entity.BsDeviceOrderAssignExample; |
||||
import java.util.List; |
||||
import org.apache.ibatis.annotations.Delete; |
||||
import org.apache.ibatis.annotations.DeleteProvider; |
||||
import org.apache.ibatis.annotations.Insert; |
||||
import org.apache.ibatis.annotations.InsertProvider; |
||||
import org.apache.ibatis.annotations.Options; |
||||
import org.apache.ibatis.annotations.Param; |
||||
import org.apache.ibatis.annotations.Result; |
||||
import org.apache.ibatis.annotations.Results; |
||||
import org.apache.ibatis.annotations.Select; |
||||
import org.apache.ibatis.annotations.SelectProvider; |
||||
import org.apache.ibatis.annotations.Update; |
||||
import org.apache.ibatis.annotations.UpdateProvider; |
||||
import org.apache.ibatis.type.JdbcType; |
||||
import org.springframework.stereotype.Repository; |
||||
|
||||
/** |
||||
* |
||||
* 代码由工具生成,请勿修改!!! |
||||
* 如果需要扩展请在其父类进行扩展 |
||||
* |
||||
**/ |
||||
@Repository |
||||
public interface BsDeviceOrderAssignMapper extends BsDeviceOrderAssignMapperExt { |
||||
@SelectProvider(type=BsDeviceOrderAssignSqlProvider.class, method="countByExample") |
||||
long countByExample(BsDeviceOrderAssignExample example); |
||||
|
||||
@DeleteProvider(type=BsDeviceOrderAssignSqlProvider.class, method="deleteByExample") |
||||
int deleteByExample(BsDeviceOrderAssignExample example); |
||||
|
||||
@Delete({ |
||||
"delete from bs_device_order_assign", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
int deleteByPrimaryKey(Long id); |
||||
|
||||
@Insert({ |
||||
"insert into bs_device_order_assign (order_id, order_no, ", |
||||
"order_type, pay_serial_no, ", |
||||
"order_refund_id, order_refund_no, ", |
||||
"device_id, device_no, ", |
||||
"create_time, `status`, ", |
||||
"company_id, company_name, ", |
||||
"agent_id, agent_name, ", |
||||
"salesman_id, salesman_name, ", |
||||
"mer_id, mer_name, store_id, ", |
||||
"store_name, ext_1, ", |
||||
"ext_2, ext_3)", |
||||
"values (#{orderId,jdbcType=BIGINT}, #{orderNo,jdbcType=VARCHAR}, ", |
||||
"#{orderType,jdbcType=INTEGER}, #{paySerialNo,jdbcType=VARCHAR}, ", |
||||
"#{orderRefundId,jdbcType=BIGINT}, #{orderRefundNo,jdbcType=VARCHAR}, ", |
||||
"#{deviceId,jdbcType=INTEGER}, #{deviceNo,jdbcType=VARCHAR}, ", |
||||
"#{createTime,jdbcType=TIMESTAMP}, #{status,jdbcType=INTEGER}, ", |
||||
"#{companyId,jdbcType=BIGINT}, #{companyName,jdbcType=VARCHAR}, ", |
||||
"#{agentId,jdbcType=BIGINT}, #{agentName,jdbcType=VARCHAR}, ", |
||||
"#{salesmanId,jdbcType=BIGINT}, #{salesmanName,jdbcType=VARCHAR}, ", |
||||
"#{merId,jdbcType=BIGINT}, #{merName,jdbcType=VARCHAR}, #{storeId,jdbcType=BIGINT}, ", |
||||
"#{storeName,jdbcType=VARCHAR}, #{ext1,jdbcType=VARCHAR}, ", |
||||
"#{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})" |
||||
}) |
||||
@Options(useGeneratedKeys=true,keyProperty="id") |
||||
int insert(BsDeviceOrderAssign record); |
||||
|
||||
@InsertProvider(type=BsDeviceOrderAssignSqlProvider.class, method="insertSelective") |
||||
@Options(useGeneratedKeys=true,keyProperty="id") |
||||
int insertSelective(BsDeviceOrderAssign record); |
||||
|
||||
@SelectProvider(type=BsDeviceOrderAssignSqlProvider.class, method="selectByExample") |
||||
@Results({ |
||||
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), |
||||
@Result(column="order_id", property="orderId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="order_no", property="orderNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="order_type", property="orderType", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="pay_serial_no", property="paySerialNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="order_refund_id", property="orderRefundId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="order_refund_no", property="orderRefundNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="device_id", property="deviceId", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="device_no", property="deviceNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="company_id", property="companyId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="company_name", property="companyName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="agent_id", property="agentId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="agent_name", property="agentName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="salesman_id", property="salesmanId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="salesman_name", property="salesmanName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="mer_id", property="merId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="mer_name", property="merName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="store_id", property="storeId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="store_name", property="storeName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) |
||||
}) |
||||
List<BsDeviceOrderAssign> selectByExample(BsDeviceOrderAssignExample example); |
||||
|
||||
@Select({ |
||||
"select", |
||||
"id, order_id, order_no, order_type, pay_serial_no, order_refund_id, order_refund_no, ", |
||||
"device_id, device_no, create_time, `status`, company_id, company_name, agent_id, ", |
||||
"agent_name, salesman_id, salesman_name, mer_id, mer_name, store_id, store_name, ", |
||||
"ext_1, ext_2, ext_3", |
||||
"from bs_device_order_assign", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
@Results({ |
||||
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), |
||||
@Result(column="order_id", property="orderId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="order_no", property="orderNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="order_type", property="orderType", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="pay_serial_no", property="paySerialNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="order_refund_id", property="orderRefundId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="order_refund_no", property="orderRefundNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="device_id", property="deviceId", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="device_no", property="deviceNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="company_id", property="companyId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="company_name", property="companyName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="agent_id", property="agentId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="agent_name", property="agentName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="salesman_id", property="salesmanId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="salesman_name", property="salesmanName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="mer_id", property="merId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="mer_name", property="merName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="store_id", property="storeId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="store_name", property="storeName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) |
||||
}) |
||||
BsDeviceOrderAssign selectByPrimaryKey(Long id); |
||||
|
||||
@UpdateProvider(type=BsDeviceOrderAssignSqlProvider.class, method="updateByExampleSelective") |
||||
int updateByExampleSelective(@Param("record") BsDeviceOrderAssign record, @Param("example") BsDeviceOrderAssignExample example); |
||||
|
||||
@UpdateProvider(type=BsDeviceOrderAssignSqlProvider.class, method="updateByExample") |
||||
int updateByExample(@Param("record") BsDeviceOrderAssign record, @Param("example") BsDeviceOrderAssignExample example); |
||||
|
||||
@UpdateProvider(type=BsDeviceOrderAssignSqlProvider.class, method="updateByPrimaryKeySelective") |
||||
int updateByPrimaryKeySelective(BsDeviceOrderAssign record); |
||||
|
||||
@Update({ |
||||
"update bs_device_order_assign", |
||||
"set order_id = #{orderId,jdbcType=BIGINT},", |
||||
"order_no = #{orderNo,jdbcType=VARCHAR},", |
||||
"order_type = #{orderType,jdbcType=INTEGER},", |
||||
"pay_serial_no = #{paySerialNo,jdbcType=VARCHAR},", |
||||
"order_refund_id = #{orderRefundId,jdbcType=BIGINT},", |
||||
"order_refund_no = #{orderRefundNo,jdbcType=VARCHAR},", |
||||
"device_id = #{deviceId,jdbcType=INTEGER},", |
||||
"device_no = #{deviceNo,jdbcType=VARCHAR},", |
||||
"create_time = #{createTime,jdbcType=TIMESTAMP},", |
||||
"`status` = #{status,jdbcType=INTEGER},", |
||||
"company_id = #{companyId,jdbcType=BIGINT},", |
||||
"company_name = #{companyName,jdbcType=VARCHAR},", |
||||
"agent_id = #{agentId,jdbcType=BIGINT},", |
||||
"agent_name = #{agentName,jdbcType=VARCHAR},", |
||||
"salesman_id = #{salesmanId,jdbcType=BIGINT},", |
||||
"salesman_name = #{salesmanName,jdbcType=VARCHAR},", |
||||
"mer_id = #{merId,jdbcType=BIGINT},", |
||||
"mer_name = #{merName,jdbcType=VARCHAR},", |
||||
"store_id = #{storeId,jdbcType=BIGINT},", |
||||
"store_name = #{storeName,jdbcType=VARCHAR},", |
||||
"ext_1 = #{ext1,jdbcType=VARCHAR},", |
||||
"ext_2 = #{ext2,jdbcType=VARCHAR},", |
||||
"ext_3 = #{ext3,jdbcType=VARCHAR}", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
int updateByPrimaryKey(BsDeviceOrderAssign record); |
||||
} |
@ -1,7 +0,0 @@ |
||||
package com.hai.dao; |
||||
|
||||
/** |
||||
* mapper扩展类 |
||||
*/ |
||||
public interface BsDeviceOrderAssignMapperExt { |
||||
} |
@ -1,500 +0,0 @@ |
||||
package com.hai.dao; |
||||
|
||||
import com.hai.entity.BsDeviceOrderAssign; |
||||
import com.hai.entity.BsDeviceOrderAssignExample.Criteria; |
||||
import com.hai.entity.BsDeviceOrderAssignExample.Criterion; |
||||
import com.hai.entity.BsDeviceOrderAssignExample; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
import org.apache.ibatis.jdbc.SQL; |
||||
|
||||
public class BsDeviceOrderAssignSqlProvider { |
||||
|
||||
public String countByExample(BsDeviceOrderAssignExample example) { |
||||
SQL sql = new SQL(); |
||||
sql.SELECT("count(*)").FROM("bs_device_order_assign"); |
||||
applyWhere(sql, example, false); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String deleteByExample(BsDeviceOrderAssignExample example) { |
||||
SQL sql = new SQL(); |
||||
sql.DELETE_FROM("bs_device_order_assign"); |
||||
applyWhere(sql, example, false); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String insertSelective(BsDeviceOrderAssign record) { |
||||
SQL sql = new SQL(); |
||||
sql.INSERT_INTO("bs_device_order_assign"); |
||||
|
||||
if (record.getOrderId() != null) { |
||||
sql.VALUES("order_id", "#{orderId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getOrderNo() != null) { |
||||
sql.VALUES("order_no", "#{orderNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getOrderType() != null) { |
||||
sql.VALUES("order_type", "#{orderType,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getPaySerialNo() != null) { |
||||
sql.VALUES("pay_serial_no", "#{paySerialNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getOrderRefundId() != null) { |
||||
sql.VALUES("order_refund_id", "#{orderRefundId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getOrderRefundNo() != null) { |
||||
sql.VALUES("order_refund_no", "#{orderRefundNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getDeviceId() != null) { |
||||
sql.VALUES("device_id", "#{deviceId,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getDeviceNo() != null) { |
||||
sql.VALUES("device_no", "#{deviceNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.VALUES("create_time", "#{createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.VALUES("`status`", "#{status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCompanyId() != null) { |
||||
sql.VALUES("company_id", "#{companyId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCompanyName() != null) { |
||||
sql.VALUES("company_name", "#{companyName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getAgentId() != null) { |
||||
sql.VALUES("agent_id", "#{agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getAgentName() != null) { |
||||
sql.VALUES("agent_name", "#{agentName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getSalesmanId() != null) { |
||||
sql.VALUES("salesman_id", "#{salesmanId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getSalesmanName() != null) { |
||||
sql.VALUES("salesman_name", "#{salesmanName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getMerId() != null) { |
||||
sql.VALUES("mer_id", "#{merId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getMerName() != null) { |
||||
sql.VALUES("mer_name", "#{merName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStoreId() != null) { |
||||
sql.VALUES("store_id", "#{storeId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getStoreName() != null) { |
||||
sql.VALUES("store_name", "#{storeName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt1() != null) { |
||||
sql.VALUES("ext_1", "#{ext1,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt2() != null) { |
||||
sql.VALUES("ext_2", "#{ext2,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt3() != null) { |
||||
sql.VALUES("ext_3", "#{ext3,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String selectByExample(BsDeviceOrderAssignExample example) { |
||||
SQL sql = new SQL(); |
||||
if (example != null && example.isDistinct()) { |
||||
sql.SELECT_DISTINCT("id"); |
||||
} else { |
||||
sql.SELECT("id"); |
||||
} |
||||
sql.SELECT("order_id"); |
||||
sql.SELECT("order_no"); |
||||
sql.SELECT("order_type"); |
||||
sql.SELECT("pay_serial_no"); |
||||
sql.SELECT("order_refund_id"); |
||||
sql.SELECT("order_refund_no"); |
||||
sql.SELECT("device_id"); |
||||
sql.SELECT("device_no"); |
||||
sql.SELECT("create_time"); |
||||
sql.SELECT("`status`"); |
||||
sql.SELECT("company_id"); |
||||
sql.SELECT("company_name"); |
||||
sql.SELECT("agent_id"); |
||||
sql.SELECT("agent_name"); |
||||
sql.SELECT("salesman_id"); |
||||
sql.SELECT("salesman_name"); |
||||
sql.SELECT("mer_id"); |
||||
sql.SELECT("mer_name"); |
||||
sql.SELECT("store_id"); |
||||
sql.SELECT("store_name"); |
||||
sql.SELECT("ext_1"); |
||||
sql.SELECT("ext_2"); |
||||
sql.SELECT("ext_3"); |
||||
sql.FROM("bs_device_order_assign"); |
||||
applyWhere(sql, example, false); |
||||
|
||||
if (example != null && example.getOrderByClause() != null) { |
||||
sql.ORDER_BY(example.getOrderByClause()); |
||||
} |
||||
|
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByExampleSelective(Map<String, Object> parameter) { |
||||
BsDeviceOrderAssign record = (BsDeviceOrderAssign) parameter.get("record"); |
||||
BsDeviceOrderAssignExample example = (BsDeviceOrderAssignExample) parameter.get("example"); |
||||
|
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("bs_device_order_assign"); |
||||
|
||||
if (record.getId() != null) { |
||||
sql.SET("id = #{record.id,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getOrderId() != null) { |
||||
sql.SET("order_id = #{record.orderId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getOrderNo() != null) { |
||||
sql.SET("order_no = #{record.orderNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getOrderType() != null) { |
||||
sql.SET("order_type = #{record.orderType,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getPaySerialNo() != null) { |
||||
sql.SET("pay_serial_no = #{record.paySerialNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getOrderRefundId() != null) { |
||||
sql.SET("order_refund_id = #{record.orderRefundId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getOrderRefundNo() != null) { |
||||
sql.SET("order_refund_no = #{record.orderRefundNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getDeviceId() != null) { |
||||
sql.SET("device_id = #{record.deviceId,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getDeviceNo() != null) { |
||||
sql.SET("device_no = #{record.deviceNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCompanyId() != null) { |
||||
sql.SET("company_id = #{record.companyId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCompanyName() != null) { |
||||
sql.SET("company_name = #{record.companyName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getAgentId() != null) { |
||||
sql.SET("agent_id = #{record.agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getAgentName() != null) { |
||||
sql.SET("agent_name = #{record.agentName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getSalesmanId() != null) { |
||||
sql.SET("salesman_id = #{record.salesmanId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getSalesmanName() != null) { |
||||
sql.SET("salesman_name = #{record.salesmanName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getMerId() != null) { |
||||
sql.SET("mer_id = #{record.merId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getMerName() != null) { |
||||
sql.SET("mer_name = #{record.merName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStoreId() != null) { |
||||
sql.SET("store_id = #{record.storeId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getStoreName() != null) { |
||||
sql.SET("store_name = #{record.storeName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt1() != null) { |
||||
sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt2() != null) { |
||||
sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt3() != null) { |
||||
sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
applyWhere(sql, example, true); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByExample(Map<String, Object> parameter) { |
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("bs_device_order_assign"); |
||||
|
||||
sql.SET("id = #{record.id,jdbcType=BIGINT}"); |
||||
sql.SET("order_id = #{record.orderId,jdbcType=BIGINT}"); |
||||
sql.SET("order_no = #{record.orderNo,jdbcType=VARCHAR}"); |
||||
sql.SET("order_type = #{record.orderType,jdbcType=INTEGER}"); |
||||
sql.SET("pay_serial_no = #{record.paySerialNo,jdbcType=VARCHAR}"); |
||||
sql.SET("order_refund_id = #{record.orderRefundId,jdbcType=BIGINT}"); |
||||
sql.SET("order_refund_no = #{record.orderRefundNo,jdbcType=VARCHAR}"); |
||||
sql.SET("device_id = #{record.deviceId,jdbcType=INTEGER}"); |
||||
sql.SET("device_no = #{record.deviceNo,jdbcType=VARCHAR}"); |
||||
sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); |
||||
sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); |
||||
sql.SET("company_id = #{record.companyId,jdbcType=BIGINT}"); |
||||
sql.SET("company_name = #{record.companyName,jdbcType=VARCHAR}"); |
||||
sql.SET("agent_id = #{record.agentId,jdbcType=BIGINT}"); |
||||
sql.SET("agent_name = #{record.agentName,jdbcType=VARCHAR}"); |
||||
sql.SET("salesman_id = #{record.salesmanId,jdbcType=BIGINT}"); |
||||
sql.SET("salesman_name = #{record.salesmanName,jdbcType=VARCHAR}"); |
||||
sql.SET("mer_id = #{record.merId,jdbcType=BIGINT}"); |
||||
sql.SET("mer_name = #{record.merName,jdbcType=VARCHAR}"); |
||||
sql.SET("store_id = #{record.storeId,jdbcType=BIGINT}"); |
||||
sql.SET("store_name = #{record.storeName,jdbcType=VARCHAR}"); |
||||
sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); |
||||
sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); |
||||
sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); |
||||
|
||||
BsDeviceOrderAssignExample example = (BsDeviceOrderAssignExample) parameter.get("example"); |
||||
applyWhere(sql, example, true); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByPrimaryKeySelective(BsDeviceOrderAssign record) { |
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("bs_device_order_assign"); |
||||
|
||||
if (record.getOrderId() != null) { |
||||
sql.SET("order_id = #{orderId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getOrderNo() != null) { |
||||
sql.SET("order_no = #{orderNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getOrderType() != null) { |
||||
sql.SET("order_type = #{orderType,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getPaySerialNo() != null) { |
||||
sql.SET("pay_serial_no = #{paySerialNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getOrderRefundId() != null) { |
||||
sql.SET("order_refund_id = #{orderRefundId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getOrderRefundNo() != null) { |
||||
sql.SET("order_refund_no = #{orderRefundNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getDeviceId() != null) { |
||||
sql.SET("device_id = #{deviceId,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getDeviceNo() != null) { |
||||
sql.SET("device_no = #{deviceNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.SET("create_time = #{createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.SET("`status` = #{status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCompanyId() != null) { |
||||
sql.SET("company_id = #{companyId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCompanyName() != null) { |
||||
sql.SET("company_name = #{companyName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getAgentId() != null) { |
||||
sql.SET("agent_id = #{agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getAgentName() != null) { |
||||
sql.SET("agent_name = #{agentName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getSalesmanId() != null) { |
||||
sql.SET("salesman_id = #{salesmanId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getSalesmanName() != null) { |
||||
sql.SET("salesman_name = #{salesmanName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getMerId() != null) { |
||||
sql.SET("mer_id = #{merId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getMerName() != null) { |
||||
sql.SET("mer_name = #{merName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStoreId() != null) { |
||||
sql.SET("store_id = #{storeId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getStoreName() != null) { |
||||
sql.SET("store_name = #{storeName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt1() != null) { |
||||
sql.SET("ext_1 = #{ext1,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt2() != null) { |
||||
sql.SET("ext_2 = #{ext2,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt3() != null) { |
||||
sql.SET("ext_3 = #{ext3,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
sql.WHERE("id = #{id,jdbcType=BIGINT}"); |
||||
|
||||
return sql.toString(); |
||||
} |
||||
|
||||
protected void applyWhere(SQL sql, BsDeviceOrderAssignExample example, boolean includeExamplePhrase) { |
||||
if (example == null) { |
||||
return; |
||||
} |
||||
|
||||
String parmPhrase1; |
||||
String parmPhrase1_th; |
||||
String parmPhrase2; |
||||
String parmPhrase2_th; |
||||
String parmPhrase3; |
||||
String parmPhrase3_th; |
||||
if (includeExamplePhrase) { |
||||
parmPhrase1 = "%s #{example.oredCriteria[%d].allCriteria[%d].value}"; |
||||
parmPhrase1_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; |
||||
parmPhrase2 = "%s #{example.oredCriteria[%d].allCriteria[%d].value} and #{example.oredCriteria[%d].criteria[%d].secondValue}"; |
||||
parmPhrase2_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{example.oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; |
||||
parmPhrase3 = "#{example.oredCriteria[%d].allCriteria[%d].value[%d]}"; |
||||
parmPhrase3_th = "#{example.oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; |
||||
} else { |
||||
parmPhrase1 = "%s #{oredCriteria[%d].allCriteria[%d].value}"; |
||||
parmPhrase1_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; |
||||
parmPhrase2 = "%s #{oredCriteria[%d].allCriteria[%d].value} and #{oredCriteria[%d].criteria[%d].secondValue}"; |
||||
parmPhrase2_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; |
||||
parmPhrase3 = "#{oredCriteria[%d].allCriteria[%d].value[%d]}"; |
||||
parmPhrase3_th = "#{oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; |
||||
} |
||||
|
||||
StringBuilder sb = new StringBuilder(); |
||||
List<Criteria> oredCriteria = example.getOredCriteria(); |
||||
boolean firstCriteria = true; |
||||
for (int i = 0; i < oredCriteria.size(); i++) { |
||||
Criteria criteria = oredCriteria.get(i); |
||||
if (criteria.isValid()) { |
||||
if (firstCriteria) { |
||||
firstCriteria = false; |
||||
} else { |
||||
sb.append(" or "); |
||||
} |
||||
|
||||
sb.append('('); |
||||
List<Criterion> criterions = criteria.getAllCriteria(); |
||||
boolean firstCriterion = true; |
||||
for (int j = 0; j < criterions.size(); j++) { |
||||
Criterion criterion = criterions.get(j); |
||||
if (firstCriterion) { |
||||
firstCriterion = false; |
||||
} else { |
||||
sb.append(" and "); |
||||
} |
||||
|
||||
if (criterion.isNoValue()) { |
||||
sb.append(criterion.getCondition()); |
||||
} else if (criterion.isSingleValue()) { |
||||
if (criterion.getTypeHandler() == null) { |
||||
sb.append(String.format(parmPhrase1, criterion.getCondition(), i, j)); |
||||
} else { |
||||
sb.append(String.format(parmPhrase1_th, criterion.getCondition(), i, j,criterion.getTypeHandler())); |
||||
} |
||||
} else if (criterion.isBetweenValue()) { |
||||
if (criterion.getTypeHandler() == null) { |
||||
sb.append(String.format(parmPhrase2, criterion.getCondition(), i, j, i, j)); |
||||
} else { |
||||
sb.append(String.format(parmPhrase2_th, criterion.getCondition(), i, j, criterion.getTypeHandler(), i, j, criterion.getTypeHandler())); |
||||
} |
||||
} else if (criterion.isListValue()) { |
||||
sb.append(criterion.getCondition()); |
||||
sb.append(" ("); |
||||
List<?> listItems = (List<?>) criterion.getValue(); |
||||
boolean comma = false; |
||||
for (int k = 0; k < listItems.size(); k++) { |
||||
if (comma) { |
||||
sb.append(", "); |
||||
} else { |
||||
comma = true; |
||||
} |
||||
if (criterion.getTypeHandler() == null) { |
||||
sb.append(String.format(parmPhrase3, i, j, k)); |
||||
} else { |
||||
sb.append(String.format(parmPhrase3_th, i, j, k, criterion.getTypeHandler())); |
||||
} |
||||
} |
||||
sb.append(')'); |
||||
} |
||||
} |
||||
sb.append(')'); |
||||
} |
||||
} |
||||
|
||||
if (sb.length() > 0) { |
||||
sql.WHERE(sb.toString()); |
||||
} |
||||
} |
||||
} |
@ -1,175 +0,0 @@ |
||||
package com.hai.dao; |
||||
|
||||
import com.hai.entity.BsDeviceOrder; |
||||
import com.hai.entity.BsDeviceOrderExample; |
||||
import java.util.List; |
||||
import org.apache.ibatis.annotations.Delete; |
||||
import org.apache.ibatis.annotations.DeleteProvider; |
||||
import org.apache.ibatis.annotations.Insert; |
||||
import org.apache.ibatis.annotations.InsertProvider; |
||||
import org.apache.ibatis.annotations.Options; |
||||
import org.apache.ibatis.annotations.Param; |
||||
import org.apache.ibatis.annotations.Result; |
||||
import org.apache.ibatis.annotations.Results; |
||||
import org.apache.ibatis.annotations.Select; |
||||
import org.apache.ibatis.annotations.SelectProvider; |
||||
import org.apache.ibatis.annotations.Update; |
||||
import org.apache.ibatis.annotations.UpdateProvider; |
||||
import org.apache.ibatis.type.JdbcType; |
||||
import org.springframework.stereotype.Repository; |
||||
|
||||
/** |
||||
* |
||||
* 代码由工具生成,请勿修改!!! |
||||
* 如果需要扩展请在其父类进行扩展 |
||||
* |
||||
**/ |
||||
@Repository |
||||
public interface BsDeviceOrderMapper extends BsDeviceOrderMapperExt { |
||||
@SelectProvider(type=BsDeviceOrderSqlProvider.class, method="countByExample") |
||||
long countByExample(BsDeviceOrderExample example); |
||||
|
||||
@DeleteProvider(type=BsDeviceOrderSqlProvider.class, method="deleteByExample") |
||||
int deleteByExample(BsDeviceOrderExample example); |
||||
|
||||
@Delete({ |
||||
"delete from bs_device_order", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
int deleteByPrimaryKey(Long id); |
||||
|
||||
@Insert({ |
||||
"insert into bs_device_order (order_type, order_no, ", |
||||
"pay_serial_no, device_num, ", |
||||
"order_price, pay_price, ", |
||||
"pay_real_price, create_time, ", |
||||
"pay_time, `status`, ", |
||||
"company_id, company_name, ", |
||||
"agent_id, agent_name, ", |
||||
"salesman_id, salesman_name, ", |
||||
"mer_id, mer_name, store_id, ", |
||||
"store_name, ext_1, ", |
||||
"ext_2, ext_3)", |
||||
"values (#{orderType,jdbcType=INTEGER}, #{orderNo,jdbcType=VARCHAR}, ", |
||||
"#{paySerialNo,jdbcType=VARCHAR}, #{deviceNum,jdbcType=INTEGER}, ", |
||||
"#{orderPrice,jdbcType=DECIMAL}, #{payPrice,jdbcType=DECIMAL}, ", |
||||
"#{payRealPrice,jdbcType=DECIMAL}, #{createTime,jdbcType=TIMESTAMP}, ", |
||||
"#{payTime,jdbcType=TIMESTAMP}, #{status,jdbcType=INTEGER}, ", |
||||
"#{companyId,jdbcType=BIGINT}, #{companyName,jdbcType=VARCHAR}, ", |
||||
"#{agentId,jdbcType=BIGINT}, #{agentName,jdbcType=VARCHAR}, ", |
||||
"#{salesmanId,jdbcType=BIGINT}, #{salesmanName,jdbcType=VARCHAR}, ", |
||||
"#{merId,jdbcType=BIGINT}, #{merName,jdbcType=VARCHAR}, #{storeId,jdbcType=BIGINT}, ", |
||||
"#{storeName,jdbcType=VARCHAR}, #{ext1,jdbcType=VARCHAR}, ", |
||||
"#{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})" |
||||
}) |
||||
@Options(useGeneratedKeys=true,keyProperty="id") |
||||
int insert(BsDeviceOrder record); |
||||
|
||||
@InsertProvider(type=BsDeviceOrderSqlProvider.class, method="insertSelective") |
||||
@Options(useGeneratedKeys=true,keyProperty="id") |
||||
int insertSelective(BsDeviceOrder record); |
||||
|
||||
@SelectProvider(type=BsDeviceOrderSqlProvider.class, method="selectByExample") |
||||
@Results({ |
||||
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), |
||||
@Result(column="order_type", property="orderType", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="order_no", property="orderNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="pay_serial_no", property="paySerialNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="device_num", property="deviceNum", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="order_price", property="orderPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="pay_price", property="payPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="pay_real_price", property="payRealPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="pay_time", property="payTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="company_id", property="companyId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="company_name", property="companyName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="agent_id", property="agentId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="agent_name", property="agentName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="salesman_id", property="salesmanId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="salesman_name", property="salesmanName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="mer_id", property="merId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="mer_name", property="merName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="store_id", property="storeId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="store_name", property="storeName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) |
||||
}) |
||||
List<BsDeviceOrder> selectByExample(BsDeviceOrderExample example); |
||||
|
||||
@Select({ |
||||
"select", |
||||
"id, order_type, order_no, pay_serial_no, device_num, order_price, pay_price, ", |
||||
"pay_real_price, create_time, pay_time, `status`, company_id, company_name, agent_id, ", |
||||
"agent_name, salesman_id, salesman_name, mer_id, mer_name, store_id, store_name, ", |
||||
"ext_1, ext_2, ext_3", |
||||
"from bs_device_order", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
@Results({ |
||||
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), |
||||
@Result(column="order_type", property="orderType", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="order_no", property="orderNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="pay_serial_no", property="paySerialNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="device_num", property="deviceNum", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="order_price", property="orderPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="pay_price", property="payPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="pay_real_price", property="payRealPrice", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="pay_time", property="payTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="company_id", property="companyId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="company_name", property="companyName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="agent_id", property="agentId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="agent_name", property="agentName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="salesman_id", property="salesmanId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="salesman_name", property="salesmanName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="mer_id", property="merId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="mer_name", property="merName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="store_id", property="storeId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="store_name", property="storeName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) |
||||
}) |
||||
BsDeviceOrder selectByPrimaryKey(Long id); |
||||
|
||||
@UpdateProvider(type=BsDeviceOrderSqlProvider.class, method="updateByExampleSelective") |
||||
int updateByExampleSelective(@Param("record") BsDeviceOrder record, @Param("example") BsDeviceOrderExample example); |
||||
|
||||
@UpdateProvider(type=BsDeviceOrderSqlProvider.class, method="updateByExample") |
||||
int updateByExample(@Param("record") BsDeviceOrder record, @Param("example") BsDeviceOrderExample example); |
||||
|
||||
@UpdateProvider(type=BsDeviceOrderSqlProvider.class, method="updateByPrimaryKeySelective") |
||||
int updateByPrimaryKeySelective(BsDeviceOrder record); |
||||
|
||||
@Update({ |
||||
"update bs_device_order", |
||||
"set order_type = #{orderType,jdbcType=INTEGER},", |
||||
"order_no = #{orderNo,jdbcType=VARCHAR},", |
||||
"pay_serial_no = #{paySerialNo,jdbcType=VARCHAR},", |
||||
"device_num = #{deviceNum,jdbcType=INTEGER},", |
||||
"order_price = #{orderPrice,jdbcType=DECIMAL},", |
||||
"pay_price = #{payPrice,jdbcType=DECIMAL},", |
||||
"pay_real_price = #{payRealPrice,jdbcType=DECIMAL},", |
||||
"create_time = #{createTime,jdbcType=TIMESTAMP},", |
||||
"pay_time = #{payTime,jdbcType=TIMESTAMP},", |
||||
"`status` = #{status,jdbcType=INTEGER},", |
||||
"company_id = #{companyId,jdbcType=BIGINT},", |
||||
"company_name = #{companyName,jdbcType=VARCHAR},", |
||||
"agent_id = #{agentId,jdbcType=BIGINT},", |
||||
"agent_name = #{agentName,jdbcType=VARCHAR},", |
||||
"salesman_id = #{salesmanId,jdbcType=BIGINT},", |
||||
"salesman_name = #{salesmanName,jdbcType=VARCHAR},", |
||||
"mer_id = #{merId,jdbcType=BIGINT},", |
||||
"mer_name = #{merName,jdbcType=VARCHAR},", |
||||
"store_id = #{storeId,jdbcType=BIGINT},", |
||||
"store_name = #{storeName,jdbcType=VARCHAR},", |
||||
"ext_1 = #{ext1,jdbcType=VARCHAR},", |
||||
"ext_2 = #{ext2,jdbcType=VARCHAR},", |
||||
"ext_3 = #{ext3,jdbcType=VARCHAR}", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
int updateByPrimaryKey(BsDeviceOrder record); |
||||
} |
@ -1,7 +0,0 @@ |
||||
package com.hai.dao; |
||||
|
||||
/** |
||||
* mapper扩展类 |
||||
*/ |
||||
public interface BsDeviceOrderMapperExt { |
||||
} |
@ -1,198 +0,0 @@ |
||||
package com.hai.dao; |
||||
|
||||
import com.hai.entity.BsDeviceOrderRefund; |
||||
import com.hai.entity.BsDeviceOrderRefundExample; |
||||
import java.util.List; |
||||
import org.apache.ibatis.annotations.Delete; |
||||
import org.apache.ibatis.annotations.DeleteProvider; |
||||
import org.apache.ibatis.annotations.Insert; |
||||
import org.apache.ibatis.annotations.InsertProvider; |
||||
import org.apache.ibatis.annotations.Options; |
||||
import org.apache.ibatis.annotations.Param; |
||||
import org.apache.ibatis.annotations.Result; |
||||
import org.apache.ibatis.annotations.Results; |
||||
import org.apache.ibatis.annotations.Select; |
||||
import org.apache.ibatis.annotations.SelectProvider; |
||||
import org.apache.ibatis.annotations.Update; |
||||
import org.apache.ibatis.annotations.UpdateProvider; |
||||
import org.apache.ibatis.type.JdbcType; |
||||
import org.springframework.stereotype.Repository; |
||||
|
||||
/** |
||||
* |
||||
* 代码由工具生成,请勿修改!!! |
||||
* 如果需要扩展请在其父类进行扩展 |
||||
* |
||||
**/ |
||||
@Repository |
||||
public interface BsDeviceOrderRefundMapper extends BsDeviceOrderRefundMapperExt { |
||||
@SelectProvider(type=BsDeviceOrderRefundSqlProvider.class, method="countByExample") |
||||
long countByExample(BsDeviceOrderRefundExample example); |
||||
|
||||
@DeleteProvider(type=BsDeviceOrderRefundSqlProvider.class, method="deleteByExample") |
||||
int deleteByExample(BsDeviceOrderRefundExample example); |
||||
|
||||
@Delete({ |
||||
"delete from bs_device_order_refund", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
int deleteByPrimaryKey(Long id); |
||||
|
||||
@Insert({ |
||||
"insert into bs_device_order_refund (refund_order_no, order_id, ", |
||||
"order_no, order_type, ", |
||||
"order_assign_id, device_id, ", |
||||
"deivce_no, refund |
||||
|
||||
_price, ", |
||||
"create_time, refund_time, ", |
||||
"`status`, company_id, ", |
||||
"company_name, agent_id, ", |
||||
"agent_name, salesman_id, ", |
||||
"salesman_name, mer_id, ", |
||||
"mer_name, store_id, ", |
||||
"store_name, ext_1, ", |
||||
"ext_2, ext_3)", |
||||
"values (#{refundOrderNo,jdbcType=VARCHAR}, #{orderId,jdbcType=BIGINT}, ", |
||||
"#{orderNo,jdbcType=VARCHAR}, #{orderType,jdbcType=INTEGER}, ", |
||||
"#{orderAssignId,jdbcType=BIGINT}, #{deviceId,jdbcType=BIGINT}, ", |
||||
"#{deivceNo,jdbcType=VARCHAR}, #{refund |
||||
|
||||
Price,jdbcType=DECIMAL}, ", |
||||
"#{createTime,jdbcType=TIMESTAMP}, #{refundTime,jdbcType=TIMESTAMP}, ", |
||||
"#{status,jdbcType=INTEGER}, #{companyId,jdbcType=BIGINT}, ", |
||||
"#{companyName,jdbcType=VARCHAR}, #{agentId,jdbcType=BIGINT}, ", |
||||
"#{agentName,jdbcType=VARCHAR}, #{salesmanId,jdbcType=BIGINT}, ", |
||||
"#{salesmanName,jdbcType=VARCHAR}, #{merId,jdbcType=BIGINT}, ", |
||||
"#{merName,jdbcType=VARCHAR}, #{storeId,jdbcType=BIGINT}, ", |
||||
"#{storeName,jdbcType=VARCHAR}, #{ext1,jdbcType=VARCHAR}, ", |
||||
"#{ext2,jdbcType=VARCHAR}, #{ext3,jdbcType=VARCHAR})" |
||||
}) |
||||
@Options(useGeneratedKeys=true,keyProperty="id") |
||||
int insert(BsDeviceOrderRefund record); |
||||
|
||||
@InsertProvider(type=BsDeviceOrderRefundSqlProvider.class, method="insertSelective") |
||||
@Options(useGeneratedKeys=true,keyProperty="id") |
||||
int insertSelective(BsDeviceOrderRefund record); |
||||
|
||||
@SelectProvider(type=BsDeviceOrderRefundSqlProvider.class, method="selectByExample") |
||||
@Results({ |
||||
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), |
||||
@Result(column="refund_order_no", property="refundOrderNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="order_id", property="orderId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="order_no", property="orderNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="order_type", property="orderType", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="order_assign_id", property="orderAssignId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="device_id", property="deviceId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="deivce_no", property="deivceNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="refund |
||||
|
||||
_price", property="refund |
||||
|
||||
Price", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="refund_time", property="refundTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="company_id", property="companyId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="company_name", property="companyName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="agent_id", property="agentId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="agent_name", property="agentName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="salesman_id", property="salesmanId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="salesman_name", property="salesmanName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="mer_id", property="merId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="mer_name", property="merName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="store_id", property="storeId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="store_name", property="storeName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) |
||||
}) |
||||
List<BsDeviceOrderRefund> selectByExample(BsDeviceOrderRefundExample example); |
||||
|
||||
@Select({ |
||||
"select", |
||||
"id, refund_order_no, order_id, order_no, order_type, order_assign_id, device_id, ", |
||||
"deivce_no, refund |
||||
|
||||
_price, create_time, refund_time, `status`, company_id, company_name, ", |
||||
"agent_id, agent_name, salesman_id, salesman_name, mer_id, mer_name, store_id, ", |
||||
"store_name, ext_1, ext_2, ext_3", |
||||
"from bs_device_order_refund", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
@Results({ |
||||
@Result(column="id", property="id", jdbcType=JdbcType.BIGINT, id=true), |
||||
@Result(column="refund_order_no", property="refundOrderNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="order_id", property="orderId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="order_no", property="orderNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="order_type", property="orderType", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="order_assign_id", property="orderAssignId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="device_id", property="deviceId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="deivce_no", property="deivceNo", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="refund |
||||
|
||||
_price", property="refund |
||||
|
||||
Price", jdbcType=JdbcType.DECIMAL), |
||||
@Result(column="create_time", property="createTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="refund_time", property="refundTime", jdbcType=JdbcType.TIMESTAMP), |
||||
@Result(column="status", property="status", jdbcType=JdbcType.INTEGER), |
||||
@Result(column="company_id", property="companyId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="company_name", property="companyName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="agent_id", property="agentId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="agent_name", property="agentName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="salesman_id", property="salesmanId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="salesman_name", property="salesmanName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="mer_id", property="merId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="mer_name", property="merName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="store_id", property="storeId", jdbcType=JdbcType.BIGINT), |
||||
@Result(column="store_name", property="storeName", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_1", property="ext1", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_2", property="ext2", jdbcType=JdbcType.VARCHAR), |
||||
@Result(column="ext_3", property="ext3", jdbcType=JdbcType.VARCHAR) |
||||
}) |
||||
BsDeviceOrderRefund selectByPrimaryKey(Long id); |
||||
|
||||
@UpdateProvider(type=BsDeviceOrderRefundSqlProvider.class, method="updateByExampleSelective") |
||||
int updateByExampleSelective(@Param("record") BsDeviceOrderRefund record, @Param("example") BsDeviceOrderRefundExample example); |
||||
|
||||
@UpdateProvider(type=BsDeviceOrderRefundSqlProvider.class, method="updateByExample") |
||||
int updateByExample(@Param("record") BsDeviceOrderRefund record, @Param("example") BsDeviceOrderRefundExample example); |
||||
|
||||
@UpdateProvider(type=BsDeviceOrderRefundSqlProvider.class, method="updateByPrimaryKeySelective") |
||||
int updateByPrimaryKeySelective(BsDeviceOrderRefund record); |
||||
|
||||
@Update({ |
||||
"update bs_device_order_refund", |
||||
"set refund_order_no = #{refundOrderNo,jdbcType=VARCHAR},", |
||||
"order_id = #{orderId,jdbcType=BIGINT},", |
||||
"order_no = #{orderNo,jdbcType=VARCHAR},", |
||||
"order_type = #{orderType,jdbcType=INTEGER},", |
||||
"order_assign_id = #{orderAssignId,jdbcType=BIGINT},", |
||||
"device_id = #{deviceId,jdbcType=BIGINT},", |
||||
"deivce_no = #{deivceNo,jdbcType=VARCHAR},", |
||||
"refund |
||||
|
||||
_price = #{refund |
||||
|
||||
Price,jdbcType=DECIMAL},", |
||||
"create_time = #{createTime,jdbcType=TIMESTAMP},", |
||||
"refund_time = #{refundTime,jdbcType=TIMESTAMP},", |
||||
"`status` = #{status,jdbcType=INTEGER},", |
||||
"company_id = #{companyId,jdbcType=BIGINT},", |
||||
"company_name = #{companyName,jdbcType=VARCHAR},", |
||||
"agent_id = #{agentId,jdbcType=BIGINT},", |
||||
"agent_name = #{agentName,jdbcType=VARCHAR},", |
||||
"salesman_id = #{salesmanId,jdbcType=BIGINT},", |
||||
"salesman_name = #{salesmanName,jdbcType=VARCHAR},", |
||||
"mer_id = #{merId,jdbcType=BIGINT},", |
||||
"mer_name = #{merName,jdbcType=VARCHAR},", |
||||
"store_id = #{storeId,jdbcType=BIGINT},", |
||||
"store_name = #{storeName,jdbcType=VARCHAR},", |
||||
"ext_1 = #{ext1,jdbcType=VARCHAR},", |
||||
"ext_2 = #{ext2,jdbcType=VARCHAR},", |
||||
"ext_3 = #{ext3,jdbcType=VARCHAR}", |
||||
"where id = #{id,jdbcType=BIGINT}" |
||||
}) |
||||
int updateByPrimaryKey(BsDeviceOrderRefund record); |
||||
} |
@ -1,7 +0,0 @@ |
||||
package com.hai.dao; |
||||
|
||||
/** |
||||
* mapper扩展类 |
||||
*/ |
||||
public interface BsDeviceOrderRefundMapperExt { |
||||
} |
@ -1,538 +0,0 @@ |
||||
package com.hai.dao; |
||||
|
||||
import com.hai.entity.BsDeviceOrderRefund; |
||||
import com.hai.entity.BsDeviceOrderRefundExample.Criteria; |
||||
import com.hai.entity.BsDeviceOrderRefundExample.Criterion; |
||||
import com.hai.entity.BsDeviceOrderRefundExample; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
import org.apache.ibatis.jdbc.SQL; |
||||
|
||||
public class BsDeviceOrderRefundSqlProvider { |
||||
|
||||
public String countByExample(BsDeviceOrderRefundExample example) { |
||||
SQL sql = new SQL(); |
||||
sql.SELECT("count(*)").FROM("bs_device_order_refund"); |
||||
applyWhere(sql, example, false); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String deleteByExample(BsDeviceOrderRefundExample example) { |
||||
SQL sql = new SQL(); |
||||
sql.DELETE_FROM("bs_device_order_refund"); |
||||
applyWhere(sql, example, false); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String insertSelective(BsDeviceOrderRefund record) { |
||||
SQL sql = new SQL(); |
||||
sql.INSERT_INTO("bs_device_order_refund"); |
||||
|
||||
if (record.getRefundOrderNo() != null) { |
||||
sql.VALUES("refund_order_no", "#{refundOrderNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getOrderId() != null) { |
||||
sql.VALUES("order_id", "#{orderId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getOrderNo() != null) { |
||||
sql.VALUES("order_no", "#{orderNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getOrderType() != null) { |
||||
sql.VALUES("order_type", "#{orderType,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getOrderAssignId() != null) { |
||||
sql.VALUES("order_assign_id", "#{orderAssignId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getDeviceId() != null) { |
||||
sql.VALUES("device_id", "#{deviceId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getDeivceNo() != null) { |
||||
sql.VALUES("deivce_no", "#{deivceNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getRefund |
||||
|
||||
Price() != null) { |
||||
sql.VALUES("refund |
||||
|
||||
_price", "#{refund |
||||
|
||||
Price,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.VALUES("create_time", "#{createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getRefundTime() != null) { |
||||
sql.VALUES("refund_time", "#{refundTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.VALUES("`status`", "#{status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCompanyId() != null) { |
||||
sql.VALUES("company_id", "#{companyId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCompanyName() != null) { |
||||
sql.VALUES("company_name", "#{companyName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getAgentId() != null) { |
||||
sql.VALUES("agent_id", "#{agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getAgentName() != null) { |
||||
sql.VALUES("agent_name", "#{agentName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getSalesmanId() != null) { |
||||
sql.VALUES("salesman_id", "#{salesmanId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getSalesmanName() != null) { |
||||
sql.VALUES("salesman_name", "#{salesmanName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getMerId() != null) { |
||||
sql.VALUES("mer_id", "#{merId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getMerName() != null) { |
||||
sql.VALUES("mer_name", "#{merName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStoreId() != null) { |
||||
sql.VALUES("store_id", "#{storeId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getStoreName() != null) { |
||||
sql.VALUES("store_name", "#{storeName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt1() != null) { |
||||
sql.VALUES("ext_1", "#{ext1,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt2() != null) { |
||||
sql.VALUES("ext_2", "#{ext2,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt3() != null) { |
||||
sql.VALUES("ext_3", "#{ext3,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String selectByExample(BsDeviceOrderRefundExample example) { |
||||
SQL sql = new SQL(); |
||||
if (example != null && example.isDistinct()) { |
||||
sql.SELECT_DISTINCT("id"); |
||||
} else { |
||||
sql.SELECT("id"); |
||||
} |
||||
sql.SELECT("refund_order_no"); |
||||
sql.SELECT("order_id"); |
||||
sql.SELECT("order_no"); |
||||
sql.SELECT("order_type"); |
||||
sql.SELECT("order_assign_id"); |
||||
sql.SELECT("device_id"); |
||||
sql.SELECT("deivce_no"); |
||||
sql.SELECT("refund |
||||
|
||||
_price"); |
||||
sql.SELECT("create_time"); |
||||
sql.SELECT("refund_time"); |
||||
sql.SELECT("`status`"); |
||||
sql.SELECT("company_id"); |
||||
sql.SELECT("company_name"); |
||||
sql.SELECT("agent_id"); |
||||
sql.SELECT("agent_name"); |
||||
sql.SELECT("salesman_id"); |
||||
sql.SELECT("salesman_name"); |
||||
sql.SELECT("mer_id"); |
||||
sql.SELECT("mer_name"); |
||||
sql.SELECT("store_id"); |
||||
sql.SELECT("store_name"); |
||||
sql.SELECT("ext_1"); |
||||
sql.SELECT("ext_2"); |
||||
sql.SELECT("ext_3"); |
||||
sql.FROM("bs_device_order_refund"); |
||||
applyWhere(sql, example, false); |
||||
|
||||
if (example != null && example.getOrderByClause() != null) { |
||||
sql.ORDER_BY(example.getOrderByClause()); |
||||
} |
||||
|
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByExampleSelective(Map<String, Object> parameter) { |
||||
BsDeviceOrderRefund record = (BsDeviceOrderRefund) parameter.get("record"); |
||||
BsDeviceOrderRefundExample example = (BsDeviceOrderRefundExample) parameter.get("example"); |
||||
|
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("bs_device_order_refund"); |
||||
|
||||
if (record.getId() != null) { |
||||
sql.SET("id = #{record.id,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getRefundOrderNo() != null) { |
||||
sql.SET("refund_order_no = #{record.refundOrderNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getOrderId() != null) { |
||||
sql.SET("order_id = #{record.orderId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getOrderNo() != null) { |
||||
sql.SET("order_no = #{record.orderNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getOrderType() != null) { |
||||
sql.SET("order_type = #{record.orderType,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getOrderAssignId() != null) { |
||||
sql.SET("order_assign_id = #{record.orderAssignId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getDeviceId() != null) { |
||||
sql.SET("device_id = #{record.deviceId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getDeivceNo() != null) { |
||||
sql.SET("deivce_no = #{record.deivceNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getRefund |
||||
|
||||
Price() != null) { |
||||
sql.SET("refund |
||||
|
||||
_price = #{record.refund |
||||
|
||||
Price,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getRefundTime() != null) { |
||||
sql.SET("refund_time = #{record.refundTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCompanyId() != null) { |
||||
sql.SET("company_id = #{record.companyId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCompanyName() != null) { |
||||
sql.SET("company_name = #{record.companyName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getAgentId() != null) { |
||||
sql.SET("agent_id = #{record.agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getAgentName() != null) { |
||||
sql.SET("agent_name = #{record.agentName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getSalesmanId() != null) { |
||||
sql.SET("salesman_id = #{record.salesmanId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getSalesmanName() != null) { |
||||
sql.SET("salesman_name = #{record.salesmanName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getMerId() != null) { |
||||
sql.SET("mer_id = #{record.merId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getMerName() != null) { |
||||
sql.SET("mer_name = #{record.merName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStoreId() != null) { |
||||
sql.SET("store_id = #{record.storeId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getStoreName() != null) { |
||||
sql.SET("store_name = #{record.storeName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt1() != null) { |
||||
sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt2() != null) { |
||||
sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt3() != null) { |
||||
sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
applyWhere(sql, example, true); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByExample(Map<String, Object> parameter) { |
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("bs_device_order_refund"); |
||||
|
||||
sql.SET("id = #{record.id,jdbcType=BIGINT}"); |
||||
sql.SET("refund_order_no = #{record.refundOrderNo,jdbcType=VARCHAR}"); |
||||
sql.SET("order_id = #{record.orderId,jdbcType=BIGINT}"); |
||||
sql.SET("order_no = #{record.orderNo,jdbcType=VARCHAR}"); |
||||
sql.SET("order_type = #{record.orderType,jdbcType=INTEGER}"); |
||||
sql.SET("order_assign_id = #{record.orderAssignId,jdbcType=BIGINT}"); |
||||
sql.SET("device_id = #{record.deviceId,jdbcType=BIGINT}"); |
||||
sql.SET("deivce_no = #{record.deivceNo,jdbcType=VARCHAR}"); |
||||
sql.SET("refund |
||||
|
||||
_price = #{record.refund |
||||
|
||||
Price,jdbcType=DECIMAL}"); |
||||
sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); |
||||
sql.SET("refund_time = #{record.refundTime,jdbcType=TIMESTAMP}"); |
||||
sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); |
||||
sql.SET("company_id = #{record.companyId,jdbcType=BIGINT}"); |
||||
sql.SET("company_name = #{record.companyName,jdbcType=VARCHAR}"); |
||||
sql.SET("agent_id = #{record.agentId,jdbcType=BIGINT}"); |
||||
sql.SET("agent_name = #{record.agentName,jdbcType=VARCHAR}"); |
||||
sql.SET("salesman_id = #{record.salesmanId,jdbcType=BIGINT}"); |
||||
sql.SET("salesman_name = #{record.salesmanName,jdbcType=VARCHAR}"); |
||||
sql.SET("mer_id = #{record.merId,jdbcType=BIGINT}"); |
||||
sql.SET("mer_name = #{record.merName,jdbcType=VARCHAR}"); |
||||
sql.SET("store_id = #{record.storeId,jdbcType=BIGINT}"); |
||||
sql.SET("store_name = #{record.storeName,jdbcType=VARCHAR}"); |
||||
sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); |
||||
sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); |
||||
sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); |
||||
|
||||
BsDeviceOrderRefundExample example = (BsDeviceOrderRefundExample) parameter.get("example"); |
||||
applyWhere(sql, example, true); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByPrimaryKeySelective(BsDeviceOrderRefund record) { |
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("bs_device_order_refund"); |
||||
|
||||
if (record.getRefundOrderNo() != null) { |
||||
sql.SET("refund_order_no = #{refundOrderNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getOrderId() != null) { |
||||
sql.SET("order_id = #{orderId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getOrderNo() != null) { |
||||
sql.SET("order_no = #{orderNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getOrderType() != null) { |
||||
sql.SET("order_type = #{orderType,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getOrderAssignId() != null) { |
||||
sql.SET("order_assign_id = #{orderAssignId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getDeviceId() != null) { |
||||
sql.SET("device_id = #{deviceId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getDeivceNo() != null) { |
||||
sql.SET("deivce_no = #{deivceNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getRefund |
||||
|
||||
Price() != null) { |
||||
sql.SET("refund |
||||
|
||||
_price = #{refund |
||||
|
||||
Price,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.SET("create_time = #{createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getRefundTime() != null) { |
||||
sql.SET("refund_time = #{refundTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.SET("`status` = #{status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCompanyId() != null) { |
||||
sql.SET("company_id = #{companyId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCompanyName() != null) { |
||||
sql.SET("company_name = #{companyName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getAgentId() != null) { |
||||
sql.SET("agent_id = #{agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getAgentName() != null) { |
||||
sql.SET("agent_name = #{agentName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getSalesmanId() != null) { |
||||
sql.SET("salesman_id = #{salesmanId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getSalesmanName() != null) { |
||||
sql.SET("salesman_name = #{salesmanName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getMerId() != null) { |
||||
sql.SET("mer_id = #{merId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getMerName() != null) { |
||||
sql.SET("mer_name = #{merName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStoreId() != null) { |
||||
sql.SET("store_id = #{storeId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getStoreName() != null) { |
||||
sql.SET("store_name = #{storeName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt1() != null) { |
||||
sql.SET("ext_1 = #{ext1,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt2() != null) { |
||||
sql.SET("ext_2 = #{ext2,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt3() != null) { |
||||
sql.SET("ext_3 = #{ext3,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
sql.WHERE("id = #{id,jdbcType=BIGINT}"); |
||||
|
||||
return sql.toString(); |
||||
} |
||||
|
||||
protected void applyWhere(SQL sql, BsDeviceOrderRefundExample example, boolean includeExamplePhrase) { |
||||
if (example == null) { |
||||
return; |
||||
} |
||||
|
||||
String parmPhrase1; |
||||
String parmPhrase1_th; |
||||
String parmPhrase2; |
||||
String parmPhrase2_th; |
||||
String parmPhrase3; |
||||
String parmPhrase3_th; |
||||
if (includeExamplePhrase) { |
||||
parmPhrase1 = "%s #{example.oredCriteria[%d].allCriteria[%d].value}"; |
||||
parmPhrase1_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; |
||||
parmPhrase2 = "%s #{example.oredCriteria[%d].allCriteria[%d].value} and #{example.oredCriteria[%d].criteria[%d].secondValue}"; |
||||
parmPhrase2_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{example.oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; |
||||
parmPhrase3 = "#{example.oredCriteria[%d].allCriteria[%d].value[%d]}"; |
||||
parmPhrase3_th = "#{example.oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; |
||||
} else { |
||||
parmPhrase1 = "%s #{oredCriteria[%d].allCriteria[%d].value}"; |
||||
parmPhrase1_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; |
||||
parmPhrase2 = "%s #{oredCriteria[%d].allCriteria[%d].value} and #{oredCriteria[%d].criteria[%d].secondValue}"; |
||||
parmPhrase2_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; |
||||
parmPhrase3 = "#{oredCriteria[%d].allCriteria[%d].value[%d]}"; |
||||
parmPhrase3_th = "#{oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; |
||||
} |
||||
|
||||
StringBuilder sb = new StringBuilder(); |
||||
List<Criteria> oredCriteria = example.getOredCriteria(); |
||||
boolean firstCriteria = true; |
||||
for (int i = 0; i < oredCriteria.size(); i++) { |
||||
Criteria criteria = oredCriteria.get(i); |
||||
if (criteria.isValid()) { |
||||
if (firstCriteria) { |
||||
firstCriteria = false; |
||||
} else { |
||||
sb.append(" or "); |
||||
} |
||||
|
||||
sb.append('('); |
||||
List<Criterion> criterions = criteria.getAllCriteria(); |
||||
boolean firstCriterion = true; |
||||
for (int j = 0; j < criterions.size(); j++) { |
||||
Criterion criterion = criterions.get(j); |
||||
if (firstCriterion) { |
||||
firstCriterion = false; |
||||
} else { |
||||
sb.append(" and "); |
||||
} |
||||
|
||||
if (criterion.isNoValue()) { |
||||
sb.append(criterion.getCondition()); |
||||
} else if (criterion.isSingleValue()) { |
||||
if (criterion.getTypeHandler() == null) { |
||||
sb.append(String.format(parmPhrase1, criterion.getCondition(), i, j)); |
||||
} else { |
||||
sb.append(String.format(parmPhrase1_th, criterion.getCondition(), i, j,criterion.getTypeHandler())); |
||||
} |
||||
} else if (criterion.isBetweenValue()) { |
||||
if (criterion.getTypeHandler() == null) { |
||||
sb.append(String.format(parmPhrase2, criterion.getCondition(), i, j, i, j)); |
||||
} else { |
||||
sb.append(String.format(parmPhrase2_th, criterion.getCondition(), i, j, criterion.getTypeHandler(), i, j, criterion.getTypeHandler())); |
||||
} |
||||
} else if (criterion.isListValue()) { |
||||
sb.append(criterion.getCondition()); |
||||
sb.append(" ("); |
||||
List<?> listItems = (List<?>) criterion.getValue(); |
||||
boolean comma = false; |
||||
for (int k = 0; k < listItems.size(); k++) { |
||||
if (comma) { |
||||
sb.append(", "); |
||||
} else { |
||||
comma = true; |
||||
} |
||||
if (criterion.getTypeHandler() == null) { |
||||
sb.append(String.format(parmPhrase3, i, j, k)); |
||||
} else { |
||||
sb.append(String.format(parmPhrase3_th, i, j, k, criterion.getTypeHandler())); |
||||
} |
||||
} |
||||
sb.append(')'); |
||||
} |
||||
} |
||||
sb.append(')'); |
||||
} |
||||
} |
||||
|
||||
if (sb.length() > 0) { |
||||
sql.WHERE(sb.toString()); |
||||
} |
||||
} |
||||
} |
@ -1,500 +0,0 @@ |
||||
package com.hai.dao; |
||||
|
||||
import com.hai.entity.BsDeviceOrder; |
||||
import com.hai.entity.BsDeviceOrderExample.Criteria; |
||||
import com.hai.entity.BsDeviceOrderExample.Criterion; |
||||
import com.hai.entity.BsDeviceOrderExample; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
import org.apache.ibatis.jdbc.SQL; |
||||
|
||||
public class BsDeviceOrderSqlProvider { |
||||
|
||||
public String countByExample(BsDeviceOrderExample example) { |
||||
SQL sql = new SQL(); |
||||
sql.SELECT("count(*)").FROM("bs_device_order"); |
||||
applyWhere(sql, example, false); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String deleteByExample(BsDeviceOrderExample example) { |
||||
SQL sql = new SQL(); |
||||
sql.DELETE_FROM("bs_device_order"); |
||||
applyWhere(sql, example, false); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String insertSelective(BsDeviceOrder record) { |
||||
SQL sql = new SQL(); |
||||
sql.INSERT_INTO("bs_device_order"); |
||||
|
||||
if (record.getOrderType() != null) { |
||||
sql.VALUES("order_type", "#{orderType,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getOrderNo() != null) { |
||||
sql.VALUES("order_no", "#{orderNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getPaySerialNo() != null) { |
||||
sql.VALUES("pay_serial_no", "#{paySerialNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getDeviceNum() != null) { |
||||
sql.VALUES("device_num", "#{deviceNum,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getOrderPrice() != null) { |
||||
sql.VALUES("order_price", "#{orderPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getPayPrice() != null) { |
||||
sql.VALUES("pay_price", "#{payPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getPayRealPrice() != null) { |
||||
sql.VALUES("pay_real_price", "#{payRealPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.VALUES("create_time", "#{createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getPayTime() != null) { |
||||
sql.VALUES("pay_time", "#{payTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.VALUES("`status`", "#{status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCompanyId() != null) { |
||||
sql.VALUES("company_id", "#{companyId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCompanyName() != null) { |
||||
sql.VALUES("company_name", "#{companyName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getAgentId() != null) { |
||||
sql.VALUES("agent_id", "#{agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getAgentName() != null) { |
||||
sql.VALUES("agent_name", "#{agentName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getSalesmanId() != null) { |
||||
sql.VALUES("salesman_id", "#{salesmanId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getSalesmanName() != null) { |
||||
sql.VALUES("salesman_name", "#{salesmanName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getMerId() != null) { |
||||
sql.VALUES("mer_id", "#{merId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getMerName() != null) { |
||||
sql.VALUES("mer_name", "#{merName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStoreId() != null) { |
||||
sql.VALUES("store_id", "#{storeId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getStoreName() != null) { |
||||
sql.VALUES("store_name", "#{storeName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt1() != null) { |
||||
sql.VALUES("ext_1", "#{ext1,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt2() != null) { |
||||
sql.VALUES("ext_2", "#{ext2,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt3() != null) { |
||||
sql.VALUES("ext_3", "#{ext3,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String selectByExample(BsDeviceOrderExample example) { |
||||
SQL sql = new SQL(); |
||||
if (example != null && example.isDistinct()) { |
||||
sql.SELECT_DISTINCT("id"); |
||||
} else { |
||||
sql.SELECT("id"); |
||||
} |
||||
sql.SELECT("order_type"); |
||||
sql.SELECT("order_no"); |
||||
sql.SELECT("pay_serial_no"); |
||||
sql.SELECT("device_num"); |
||||
sql.SELECT("order_price"); |
||||
sql.SELECT("pay_price"); |
||||
sql.SELECT("pay_real_price"); |
||||
sql.SELECT("create_time"); |
||||
sql.SELECT("pay_time"); |
||||
sql.SELECT("`status`"); |
||||
sql.SELECT("company_id"); |
||||
sql.SELECT("company_name"); |
||||
sql.SELECT("agent_id"); |
||||
sql.SELECT("agent_name"); |
||||
sql.SELECT("salesman_id"); |
||||
sql.SELECT("salesman_name"); |
||||
sql.SELECT("mer_id"); |
||||
sql.SELECT("mer_name"); |
||||
sql.SELECT("store_id"); |
||||
sql.SELECT("store_name"); |
||||
sql.SELECT("ext_1"); |
||||
sql.SELECT("ext_2"); |
||||
sql.SELECT("ext_3"); |
||||
sql.FROM("bs_device_order"); |
||||
applyWhere(sql, example, false); |
||||
|
||||
if (example != null && example.getOrderByClause() != null) { |
||||
sql.ORDER_BY(example.getOrderByClause()); |
||||
} |
||||
|
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByExampleSelective(Map<String, Object> parameter) { |
||||
BsDeviceOrder record = (BsDeviceOrder) parameter.get("record"); |
||||
BsDeviceOrderExample example = (BsDeviceOrderExample) parameter.get("example"); |
||||
|
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("bs_device_order"); |
||||
|
||||
if (record.getId() != null) { |
||||
sql.SET("id = #{record.id,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getOrderType() != null) { |
||||
sql.SET("order_type = #{record.orderType,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getOrderNo() != null) { |
||||
sql.SET("order_no = #{record.orderNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getPaySerialNo() != null) { |
||||
sql.SET("pay_serial_no = #{record.paySerialNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getDeviceNum() != null) { |
||||
sql.SET("device_num = #{record.deviceNum,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getOrderPrice() != null) { |
||||
sql.SET("order_price = #{record.orderPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getPayPrice() != null) { |
||||
sql.SET("pay_price = #{record.payPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getPayRealPrice() != null) { |
||||
sql.SET("pay_real_price = #{record.payRealPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getPayTime() != null) { |
||||
sql.SET("pay_time = #{record.payTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCompanyId() != null) { |
||||
sql.SET("company_id = #{record.companyId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCompanyName() != null) { |
||||
sql.SET("company_name = #{record.companyName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getAgentId() != null) { |
||||
sql.SET("agent_id = #{record.agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getAgentName() != null) { |
||||
sql.SET("agent_name = #{record.agentName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getSalesmanId() != null) { |
||||
sql.SET("salesman_id = #{record.salesmanId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getSalesmanName() != null) { |
||||
sql.SET("salesman_name = #{record.salesmanName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getMerId() != null) { |
||||
sql.SET("mer_id = #{record.merId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getMerName() != null) { |
||||
sql.SET("mer_name = #{record.merName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStoreId() != null) { |
||||
sql.SET("store_id = #{record.storeId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getStoreName() != null) { |
||||
sql.SET("store_name = #{record.storeName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt1() != null) { |
||||
sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt2() != null) { |
||||
sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt3() != null) { |
||||
sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
applyWhere(sql, example, true); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByExample(Map<String, Object> parameter) { |
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("bs_device_order"); |
||||
|
||||
sql.SET("id = #{record.id,jdbcType=BIGINT}"); |
||||
sql.SET("order_type = #{record.orderType,jdbcType=INTEGER}"); |
||||
sql.SET("order_no = #{record.orderNo,jdbcType=VARCHAR}"); |
||||
sql.SET("pay_serial_no = #{record.paySerialNo,jdbcType=VARCHAR}"); |
||||
sql.SET("device_num = #{record.deviceNum,jdbcType=INTEGER}"); |
||||
sql.SET("order_price = #{record.orderPrice,jdbcType=DECIMAL}"); |
||||
sql.SET("pay_price = #{record.payPrice,jdbcType=DECIMAL}"); |
||||
sql.SET("pay_real_price = #{record.payRealPrice,jdbcType=DECIMAL}"); |
||||
sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); |
||||
sql.SET("pay_time = #{record.payTime,jdbcType=TIMESTAMP}"); |
||||
sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); |
||||
sql.SET("company_id = #{record.companyId,jdbcType=BIGINT}"); |
||||
sql.SET("company_name = #{record.companyName,jdbcType=VARCHAR}"); |
||||
sql.SET("agent_id = #{record.agentId,jdbcType=BIGINT}"); |
||||
sql.SET("agent_name = #{record.agentName,jdbcType=VARCHAR}"); |
||||
sql.SET("salesman_id = #{record.salesmanId,jdbcType=BIGINT}"); |
||||
sql.SET("salesman_name = #{record.salesmanName,jdbcType=VARCHAR}"); |
||||
sql.SET("mer_id = #{record.merId,jdbcType=BIGINT}"); |
||||
sql.SET("mer_name = #{record.merName,jdbcType=VARCHAR}"); |
||||
sql.SET("store_id = #{record.storeId,jdbcType=BIGINT}"); |
||||
sql.SET("store_name = #{record.storeName,jdbcType=VARCHAR}"); |
||||
sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); |
||||
sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); |
||||
sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); |
||||
|
||||
BsDeviceOrderExample example = (BsDeviceOrderExample) parameter.get("example"); |
||||
applyWhere(sql, example, true); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByPrimaryKeySelective(BsDeviceOrder record) { |
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("bs_device_order"); |
||||
|
||||
if (record.getOrderType() != null) { |
||||
sql.SET("order_type = #{orderType,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getOrderNo() != null) { |
||||
sql.SET("order_no = #{orderNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getPaySerialNo() != null) { |
||||
sql.SET("pay_serial_no = #{paySerialNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getDeviceNum() != null) { |
||||
sql.SET("device_num = #{deviceNum,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getOrderPrice() != null) { |
||||
sql.SET("order_price = #{orderPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getPayPrice() != null) { |
||||
sql.SET("pay_price = #{payPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getPayRealPrice() != null) { |
||||
sql.SET("pay_real_price = #{payRealPrice,jdbcType=DECIMAL}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.SET("create_time = #{createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getPayTime() != null) { |
||||
sql.SET("pay_time = #{payTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.SET("`status` = #{status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getCompanyId() != null) { |
||||
sql.SET("company_id = #{companyId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCompanyName() != null) { |
||||
sql.SET("company_name = #{companyName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getAgentId() != null) { |
||||
sql.SET("agent_id = #{agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getAgentName() != null) { |
||||
sql.SET("agent_name = #{agentName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getSalesmanId() != null) { |
||||
sql.SET("salesman_id = #{salesmanId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getSalesmanName() != null) { |
||||
sql.SET("salesman_name = #{salesmanName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getMerId() != null) { |
||||
sql.SET("mer_id = #{merId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getMerName() != null) { |
||||
sql.SET("mer_name = #{merName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStoreId() != null) { |
||||
sql.SET("store_id = #{storeId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getStoreName() != null) { |
||||
sql.SET("store_name = #{storeName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt1() != null) { |
||||
sql.SET("ext_1 = #{ext1,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt2() != null) { |
||||
sql.SET("ext_2 = #{ext2,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt3() != null) { |
||||
sql.SET("ext_3 = #{ext3,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
sql.WHERE("id = #{id,jdbcType=BIGINT}"); |
||||
|
||||
return sql.toString(); |
||||
} |
||||
|
||||
protected void applyWhere(SQL sql, BsDeviceOrderExample example, boolean includeExamplePhrase) { |
||||
if (example == null) { |
||||
return; |
||||
} |
||||
|
||||
String parmPhrase1; |
||||
String parmPhrase1_th; |
||||
String parmPhrase2; |
||||
String parmPhrase2_th; |
||||
String parmPhrase3; |
||||
String parmPhrase3_th; |
||||
if (includeExamplePhrase) { |
||||
parmPhrase1 = "%s #{example.oredCriteria[%d].allCriteria[%d].value}"; |
||||
parmPhrase1_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; |
||||
parmPhrase2 = "%s #{example.oredCriteria[%d].allCriteria[%d].value} and #{example.oredCriteria[%d].criteria[%d].secondValue}"; |
||||
parmPhrase2_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{example.oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; |
||||
parmPhrase3 = "#{example.oredCriteria[%d].allCriteria[%d].value[%d]}"; |
||||
parmPhrase3_th = "#{example.oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; |
||||
} else { |
||||
parmPhrase1 = "%s #{oredCriteria[%d].allCriteria[%d].value}"; |
||||
parmPhrase1_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; |
||||
parmPhrase2 = "%s #{oredCriteria[%d].allCriteria[%d].value} and #{oredCriteria[%d].criteria[%d].secondValue}"; |
||||
parmPhrase2_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; |
||||
parmPhrase3 = "#{oredCriteria[%d].allCriteria[%d].value[%d]}"; |
||||
parmPhrase3_th = "#{oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; |
||||
} |
||||
|
||||
StringBuilder sb = new StringBuilder(); |
||||
List<Criteria> oredCriteria = example.getOredCriteria(); |
||||
boolean firstCriteria = true; |
||||
for (int i = 0; i < oredCriteria.size(); i++) { |
||||
Criteria criteria = oredCriteria.get(i); |
||||
if (criteria.isValid()) { |
||||
if (firstCriteria) { |
||||
firstCriteria = false; |
||||
} else { |
||||
sb.append(" or "); |
||||
} |
||||
|
||||
sb.append('('); |
||||
List<Criterion> criterions = criteria.getAllCriteria(); |
||||
boolean firstCriterion = true; |
||||
for (int j = 0; j < criterions.size(); j++) { |
||||
Criterion criterion = criterions.get(j); |
||||
if (firstCriterion) { |
||||
firstCriterion = false; |
||||
} else { |
||||
sb.append(" and "); |
||||
} |
||||
|
||||
if (criterion.isNoValue()) { |
||||
sb.append(criterion.getCondition()); |
||||
} else if (criterion.isSingleValue()) { |
||||
if (criterion.getTypeHandler() == null) { |
||||
sb.append(String.format(parmPhrase1, criterion.getCondition(), i, j)); |
||||
} else { |
||||
sb.append(String.format(parmPhrase1_th, criterion.getCondition(), i, j,criterion.getTypeHandler())); |
||||
} |
||||
} else if (criterion.isBetweenValue()) { |
||||
if (criterion.getTypeHandler() == null) { |
||||
sb.append(String.format(parmPhrase2, criterion.getCondition(), i, j, i, j)); |
||||
} else { |
||||
sb.append(String.format(parmPhrase2_th, criterion.getCondition(), i, j, criterion.getTypeHandler(), i, j, criterion.getTypeHandler())); |
||||
} |
||||
} else if (criterion.isListValue()) { |
||||
sb.append(criterion.getCondition()); |
||||
sb.append(" ("); |
||||
List<?> listItems = (List<?>) criterion.getValue(); |
||||
boolean comma = false; |
||||
for (int k = 0; k < listItems.size(); k++) { |
||||
if (comma) { |
||||
sb.append(", "); |
||||
} else { |
||||
comma = true; |
||||
} |
||||
if (criterion.getTypeHandler() == null) { |
||||
sb.append(String.format(parmPhrase3, i, j, k)); |
||||
} else { |
||||
sb.append(String.format(parmPhrase3_th, i, j, k, criterion.getTypeHandler())); |
||||
} |
||||
} |
||||
sb.append(')'); |
||||
} |
||||
} |
||||
sb.append(')'); |
||||
} |
||||
} |
||||
|
||||
if (sb.length() > 0) { |
||||
sql.WHERE(sb.toString()); |
||||
} |
||||
} |
||||
} |
@ -1,514 +0,0 @@ |
||||
package com.hai.dao; |
||||
|
||||
import com.hai.entity.BsDevice; |
||||
import com.hai.entity.BsDeviceExample.Criteria; |
||||
import com.hai.entity.BsDeviceExample.Criterion; |
||||
import com.hai.entity.BsDeviceExample; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
import org.apache.ibatis.jdbc.SQL; |
||||
|
||||
public class BsDeviceSqlProvider { |
||||
|
||||
public String countByExample(BsDeviceExample example) { |
||||
SQL sql = new SQL(); |
||||
sql.SELECT("count(*)").FROM("bs_device"); |
||||
applyWhere(sql, example, false); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String deleteByExample(BsDeviceExample example) { |
||||
SQL sql = new SQL(); |
||||
sql.DELETE_FROM("bs_device"); |
||||
applyWhere(sql, example, false); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String insertSelective(BsDevice record) { |
||||
SQL sql = new SQL(); |
||||
sql.INSERT_INTO("bs_device"); |
||||
|
||||
if (record.getCompanyId() != null) { |
||||
sql.VALUES("company_id", "#{companyId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCompanyName() != null) { |
||||
sql.VALUES("company_name", "#{companyName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getAgentId() != null) { |
||||
sql.VALUES("agent_id", "#{agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getAgentName() != null) { |
||||
sql.VALUES("agent_name", "#{agentName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getSalesmanId() != null) { |
||||
sql.VALUES("salesman_id", "#{salesmanId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getSalesmanName() != null) { |
||||
sql.VALUES("salesman_name", "#{salesmanName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getMerId() != null) { |
||||
sql.VALUES("mer_id", "#{merId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getMerName() != null) { |
||||
sql.VALUES("mer_name", "#{merName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStoreId() != null) { |
||||
sql.VALUES("store_id", "#{storeId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getStoreName() != null) { |
||||
sql.VALUES("store_name", "#{storeName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getDeviceType() != null) { |
||||
sql.VALUES("device_type", "#{deviceType,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getDeviceNo() != null) { |
||||
sql.VALUES("device_no", "#{deviceNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getDeviceImsi() != null) { |
||||
sql.VALUES("device_imsi", "#{deviceImsi,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getDeviceIccid() != null) { |
||||
sql.VALUES("device_iccid", "#{deviceIccid,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.VALUES("`status`", "#{status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getBindStatus() != null) { |
||||
sql.VALUES("bind_status", "#{bindStatus,jdbcType=BIT}"); |
||||
} |
||||
|
||||
if (record.getBindTime() != null) { |
||||
sql.VALUES("bind_time", "#{bindTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getOpUserId() != null) { |
||||
sql.VALUES("op_user_id", "#{opUserId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getOpUserName() != null) { |
||||
sql.VALUES("op_user_name", "#{opUserName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.VALUES("create_time", "#{createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getUpdateTime() != null) { |
||||
sql.VALUES("update_time", "#{updateTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getExt1() != null) { |
||||
sql.VALUES("ext_1", "#{ext1,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt2() != null) { |
||||
sql.VALUES("ext_2", "#{ext2,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt3() != null) { |
||||
sql.VALUES("ext_3", "#{ext3,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String selectByExample(BsDeviceExample example) { |
||||
SQL sql = new SQL(); |
||||
if (example != null && example.isDistinct()) { |
||||
sql.SELECT_DISTINCT("id"); |
||||
} else { |
||||
sql.SELECT("id"); |
||||
} |
||||
sql.SELECT("company_id"); |
||||
sql.SELECT("company_name"); |
||||
sql.SELECT("agent_id"); |
||||
sql.SELECT("agent_name"); |
||||
sql.SELECT("salesman_id"); |
||||
sql.SELECT("salesman_name"); |
||||
sql.SELECT("mer_id"); |
||||
sql.SELECT("mer_name"); |
||||
sql.SELECT("store_id"); |
||||
sql.SELECT("store_name"); |
||||
sql.SELECT("device_type"); |
||||
sql.SELECT("device_no"); |
||||
sql.SELECT("device_imsi"); |
||||
sql.SELECT("device_iccid"); |
||||
sql.SELECT("`status`"); |
||||
sql.SELECT("bind_status"); |
||||
sql.SELECT("bind_time"); |
||||
sql.SELECT("op_user_id"); |
||||
sql.SELECT("op_user_name"); |
||||
sql.SELECT("create_time"); |
||||
sql.SELECT("update_time"); |
||||
sql.SELECT("ext_1"); |
||||
sql.SELECT("ext_2"); |
||||
sql.SELECT("ext_3"); |
||||
sql.FROM("bs_device"); |
||||
applyWhere(sql, example, false); |
||||
|
||||
if (example != null && example.getOrderByClause() != null) { |
||||
sql.ORDER_BY(example.getOrderByClause()); |
||||
} |
||||
|
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByExampleSelective(Map<String, Object> parameter) { |
||||
BsDevice record = (BsDevice) parameter.get("record"); |
||||
BsDeviceExample example = (BsDeviceExample) parameter.get("example"); |
||||
|
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("bs_device"); |
||||
|
||||
if (record.getId() != null) { |
||||
sql.SET("id = #{record.id,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCompanyId() != null) { |
||||
sql.SET("company_id = #{record.companyId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCompanyName() != null) { |
||||
sql.SET("company_name = #{record.companyName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getAgentId() != null) { |
||||
sql.SET("agent_id = #{record.agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getAgentName() != null) { |
||||
sql.SET("agent_name = #{record.agentName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getSalesmanId() != null) { |
||||
sql.SET("salesman_id = #{record.salesmanId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getSalesmanName() != null) { |
||||
sql.SET("salesman_name = #{record.salesmanName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getMerId() != null) { |
||||
sql.SET("mer_id = #{record.merId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getMerName() != null) { |
||||
sql.SET("mer_name = #{record.merName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStoreId() != null) { |
||||
sql.SET("store_id = #{record.storeId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getStoreName() != null) { |
||||
sql.SET("store_name = #{record.storeName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getDeviceType() != null) { |
||||
sql.SET("device_type = #{record.deviceType,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getDeviceNo() != null) { |
||||
sql.SET("device_no = #{record.deviceNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getDeviceImsi() != null) { |
||||
sql.SET("device_imsi = #{record.deviceImsi,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getDeviceIccid() != null) { |
||||
sql.SET("device_iccid = #{record.deviceIccid,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getBindStatus() != null) { |
||||
sql.SET("bind_status = #{record.bindStatus,jdbcType=BIT}"); |
||||
} |
||||
|
||||
if (record.getBindTime() != null) { |
||||
sql.SET("bind_time = #{record.bindTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getOpUserId() != null) { |
||||
sql.SET("op_user_id = #{record.opUserId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getOpUserName() != null) { |
||||
sql.SET("op_user_name = #{record.opUserName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getUpdateTime() != null) { |
||||
sql.SET("update_time = #{record.updateTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getExt1() != null) { |
||||
sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt2() != null) { |
||||
sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt3() != null) { |
||||
sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
applyWhere(sql, example, true); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByExample(Map<String, Object> parameter) { |
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("bs_device"); |
||||
|
||||
sql.SET("id = #{record.id,jdbcType=BIGINT}"); |
||||
sql.SET("company_id = #{record.companyId,jdbcType=BIGINT}"); |
||||
sql.SET("company_name = #{record.companyName,jdbcType=VARCHAR}"); |
||||
sql.SET("agent_id = #{record.agentId,jdbcType=BIGINT}"); |
||||
sql.SET("agent_name = #{record.agentName,jdbcType=VARCHAR}"); |
||||
sql.SET("salesman_id = #{record.salesmanId,jdbcType=BIGINT}"); |
||||
sql.SET("salesman_name = #{record.salesmanName,jdbcType=VARCHAR}"); |
||||
sql.SET("mer_id = #{record.merId,jdbcType=BIGINT}"); |
||||
sql.SET("mer_name = #{record.merName,jdbcType=VARCHAR}"); |
||||
sql.SET("store_id = #{record.storeId,jdbcType=BIGINT}"); |
||||
sql.SET("store_name = #{record.storeName,jdbcType=VARCHAR}"); |
||||
sql.SET("device_type = #{record.deviceType,jdbcType=INTEGER}"); |
||||
sql.SET("device_no = #{record.deviceNo,jdbcType=VARCHAR}"); |
||||
sql.SET("device_imsi = #{record.deviceImsi,jdbcType=VARCHAR}"); |
||||
sql.SET("device_iccid = #{record.deviceIccid,jdbcType=VARCHAR}"); |
||||
sql.SET("`status` = #{record.status,jdbcType=INTEGER}"); |
||||
sql.SET("bind_status = #{record.bindStatus,jdbcType=BIT}"); |
||||
sql.SET("bind_time = #{record.bindTime,jdbcType=TIMESTAMP}"); |
||||
sql.SET("op_user_id = #{record.opUserId,jdbcType=BIGINT}"); |
||||
sql.SET("op_user_name = #{record.opUserName,jdbcType=VARCHAR}"); |
||||
sql.SET("create_time = #{record.createTime,jdbcType=TIMESTAMP}"); |
||||
sql.SET("update_time = #{record.updateTime,jdbcType=TIMESTAMP}"); |
||||
sql.SET("ext_1 = #{record.ext1,jdbcType=VARCHAR}"); |
||||
sql.SET("ext_2 = #{record.ext2,jdbcType=VARCHAR}"); |
||||
sql.SET("ext_3 = #{record.ext3,jdbcType=VARCHAR}"); |
||||
|
||||
BsDeviceExample example = (BsDeviceExample) parameter.get("example"); |
||||
applyWhere(sql, example, true); |
||||
return sql.toString(); |
||||
} |
||||
|
||||
public String updateByPrimaryKeySelective(BsDevice record) { |
||||
SQL sql = new SQL(); |
||||
sql.UPDATE("bs_device"); |
||||
|
||||
if (record.getCompanyId() != null) { |
||||
sql.SET("company_id = #{companyId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getCompanyName() != null) { |
||||
sql.SET("company_name = #{companyName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getAgentId() != null) { |
||||
sql.SET("agent_id = #{agentId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getAgentName() != null) { |
||||
sql.SET("agent_name = #{agentName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getSalesmanId() != null) { |
||||
sql.SET("salesman_id = #{salesmanId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getSalesmanName() != null) { |
||||
sql.SET("salesman_name = #{salesmanName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getMerId() != null) { |
||||
sql.SET("mer_id = #{merId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getMerName() != null) { |
||||
sql.SET("mer_name = #{merName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStoreId() != null) { |
||||
sql.SET("store_id = #{storeId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getStoreName() != null) { |
||||
sql.SET("store_name = #{storeName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getDeviceType() != null) { |
||||
sql.SET("device_type = #{deviceType,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getDeviceNo() != null) { |
||||
sql.SET("device_no = #{deviceNo,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getDeviceImsi() != null) { |
||||
sql.SET("device_imsi = #{deviceImsi,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getDeviceIccid() != null) { |
||||
sql.SET("device_iccid = #{deviceIccid,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getStatus() != null) { |
||||
sql.SET("`status` = #{status,jdbcType=INTEGER}"); |
||||
} |
||||
|
||||
if (record.getBindStatus() != null) { |
||||
sql.SET("bind_status = #{bindStatus,jdbcType=BIT}"); |
||||
} |
||||
|
||||
if (record.getBindTime() != null) { |
||||
sql.SET("bind_time = #{bindTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getOpUserId() != null) { |
||||
sql.SET("op_user_id = #{opUserId,jdbcType=BIGINT}"); |
||||
} |
||||
|
||||
if (record.getOpUserName() != null) { |
||||
sql.SET("op_user_name = #{opUserName,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getCreateTime() != null) { |
||||
sql.SET("create_time = #{createTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getUpdateTime() != null) { |
||||
sql.SET("update_time = #{updateTime,jdbcType=TIMESTAMP}"); |
||||
} |
||||
|
||||
if (record.getExt1() != null) { |
||||
sql.SET("ext_1 = #{ext1,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt2() != null) { |
||||
sql.SET("ext_2 = #{ext2,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
if (record.getExt3() != null) { |
||||
sql.SET("ext_3 = #{ext3,jdbcType=VARCHAR}"); |
||||
} |
||||
|
||||
sql.WHERE("id = #{id,jdbcType=BIGINT}"); |
||||
|
||||
return sql.toString(); |
||||
} |
||||
|
||||
protected void applyWhere(SQL sql, BsDeviceExample example, boolean includeExamplePhrase) { |
||||
if (example == null) { |
||||
return; |
||||
} |
||||
|
||||
String parmPhrase1; |
||||
String parmPhrase1_th; |
||||
String parmPhrase2; |
||||
String parmPhrase2_th; |
||||
String parmPhrase3; |
||||
String parmPhrase3_th; |
||||
if (includeExamplePhrase) { |
||||
parmPhrase1 = "%s #{example.oredCriteria[%d].allCriteria[%d].value}"; |
||||
parmPhrase1_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; |
||||
parmPhrase2 = "%s #{example.oredCriteria[%d].allCriteria[%d].value} and #{example.oredCriteria[%d].criteria[%d].secondValue}"; |
||||
parmPhrase2_th = "%s #{example.oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{example.oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; |
||||
parmPhrase3 = "#{example.oredCriteria[%d].allCriteria[%d].value[%d]}"; |
||||
parmPhrase3_th = "#{example.oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; |
||||
} else { |
||||
parmPhrase1 = "%s #{oredCriteria[%d].allCriteria[%d].value}"; |
||||
parmPhrase1_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s}"; |
||||
parmPhrase2 = "%s #{oredCriteria[%d].allCriteria[%d].value} and #{oredCriteria[%d].criteria[%d].secondValue}"; |
||||
parmPhrase2_th = "%s #{oredCriteria[%d].allCriteria[%d].value,typeHandler=%s} and #{oredCriteria[%d].criteria[%d].secondValue,typeHandler=%s}"; |
||||
parmPhrase3 = "#{oredCriteria[%d].allCriteria[%d].value[%d]}"; |
||||
parmPhrase3_th = "#{oredCriteria[%d].allCriteria[%d].value[%d],typeHandler=%s}"; |
||||
} |
||||
|
||||
StringBuilder sb = new StringBuilder(); |
||||
List<Criteria> oredCriteria = example.getOredCriteria(); |
||||
boolean firstCriteria = true; |
||||
for (int i = 0; i < oredCriteria.size(); i++) { |
||||
Criteria criteria = oredCriteria.get(i); |
||||
if (criteria.isValid()) { |
||||
if (firstCriteria) { |
||||
firstCriteria = false; |
||||
} else { |
||||
sb.append(" or "); |
||||
} |
||||
|
||||
sb.append('('); |
||||
List<Criterion> criterions = criteria.getAllCriteria(); |
||||
boolean firstCriterion = true; |
||||
for (int j = 0; j < criterions.size(); j++) { |
||||
Criterion criterion = criterions.get(j); |
||||
if (firstCriterion) { |
||||
firstCriterion = false; |
||||
} else { |
||||
sb.append(" and "); |
||||
} |
||||
|
||||
if (criterion.isNoValue()) { |
||||
sb.append(criterion.getCondition()); |
||||
} else if (criterion.isSingleValue()) { |
||||
if (criterion.getTypeHandler() == null) { |
||||
sb.append(String.format(parmPhrase1, criterion.getCondition(), i, j)); |
||||
} else { |
||||
sb.append(String.format(parmPhrase1_th, criterion.getCondition(), i, j,criterion.getTypeHandler())); |
||||
} |
||||
} else if (criterion.isBetweenValue()) { |
||||
if (criterion.getTypeHandler() == null) { |
||||
sb.append(String.format(parmPhrase2, criterion.getCondition(), i, j, i, j)); |
||||
} else { |
||||
sb.append(String.format(parmPhrase2_th, criterion.getCondition(), i, j, criterion.getTypeHandler(), i, j, criterion.getTypeHandler())); |
||||
} |
||||
} else if (criterion.isListValue()) { |
||||
sb.append(criterion.getCondition()); |
||||
sb.append(" ("); |
||||
List<?> listItems = (List<?>) criterion.getValue(); |
||||
boolean comma = false; |
||||
for (int k = 0; k < listItems.size(); k++) { |
||||
if (comma) { |
||||
sb.append(", "); |
||||
} else { |
||||
comma = true; |
||||
} |
||||
if (criterion.getTypeHandler() == null) { |
||||
sb.append(String.format(parmPhrase3, i, j, k)); |
||||
} else { |
||||
sb.append(String.format(parmPhrase3_th, i, j, k, criterion.getTypeHandler())); |
||||
} |
||||
} |
||||
sb.append(')'); |
||||
} |
||||
} |
||||
sb.append(')'); |
||||
} |
||||
} |
||||
|
||||
if (sb.length() > 0) { |
||||
sql.WHERE(sb.toString()); |
||||
} |
||||
} |
||||
} |
@ -1,440 +0,0 @@ |
||||
package com.hai.entity; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* bs_device |
||||
* @author |
||||
*/ |
||||
/** |
||||
* |
||||
* 代码由工具生成 |
||||
* |
||||
**/ |
||||
public class BsDevice implements Serializable { |
||||
/** |
||||
* 主键 |
||||
*/ |
||||
private Long id; |
||||
|
||||
/** |
||||
* 公司id |
||||
*/ |
||||
private Long companyId; |
||||
|
||||
/** |
||||
* 公司名称 |
||||
*/ |
||||
private String companyName; |
||||
|
||||
/** |
||||
* 代理商id |
||||
*/ |
||||
private Long agentId; |
||||
|
||||
/** |
||||
* 代理商名称 |
||||
*/ |
||||
private String agentName; |
||||
|
||||
/** |
||||
* 业务员id |
||||
*/ |
||||
private Long salesmanId; |
||||
|
||||
/** |
||||
* 业务名称 |
||||
*/ |
||||
private String salesmanName; |
||||
|
||||
/** |
||||
* 商户id |
||||
*/ |
||||
private Long merId; |
||||
|
||||
/** |
||||
* 商户名称 |
||||
*/ |
||||
private String merName; |
||||
|
||||
/** |
||||
* 门店id |
||||
*/ |
||||
private Long storeId; |
||||
|
||||
/** |
||||
* 门店名称 |
||||
*/ |
||||
private String storeName; |
||||
|
||||
/** |
||||
* 设备类型 1: 4G 音响 |
||||
*/ |
||||
private Integer deviceType; |
||||
|
||||
/** |
||||
* 设备编号 |
||||
*/ |
||||
private String deviceNo; |
||||
|
||||
/** |
||||
* 设备SIM卡IMSI号码 |
||||
*/ |
||||
private String deviceImsi; |
||||
|
||||
/** |
||||
* 设备SIM卡 ICCID号码 |
||||
*/ |
||||
private String deviceIccid; |
||||
|
||||
/** |
||||
* 状态 0:删除 1:正常 2:停用 |
||||
*/ |
||||
private Integer status; |
||||
|
||||
/** |
||||
* 绑定状态 0:未绑定 1:已绑定 |
||||
*/ |
||||
private Boolean bindStatus; |
||||
|
||||
/** |
||||
* 绑定时间 |
||||
*/ |
||||
private Date bindTime; |
||||
|
||||
/** |
||||
* 操作人 |
||||
*/ |
||||
private Long opUserId; |
||||
|
||||
/** |
||||
* 操作名称 |
||||
*/ |
||||
private String opUserName; |
||||
|
||||
/** |
||||
* 创建时间 |
||||
*/ |
||||
private Date createTime; |
||||
|
||||
/** |
||||
* 更新时间 |
||||
*/ |
||||
private Date updateTime; |
||||
|
||||
private String ext1; |
||||
|
||||
private String ext2; |
||||
|
||||
private String ext3; |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
public Long getId() { |
||||
return id; |
||||
} |
||||
|
||||
public void setId(Long id) { |
||||
this.id = id; |
||||
} |
||||
|
||||
public Long getCompanyId() { |
||||
return companyId; |
||||
} |
||||
|
||||
public void setCompanyId(Long companyId) { |
||||
this.companyId = companyId; |
||||
} |
||||
|
||||
public String getCompanyName() { |
||||
return companyName; |
||||
} |
||||
|
||||
public void setCompanyName(String companyName) { |
||||
this.companyName = companyName; |
||||
} |
||||
|
||||
public Long getAgentId() { |
||||
return agentId; |
||||
} |
||||
|
||||
public void setAgentId(Long agentId) { |
||||
this.agentId = agentId; |
||||
} |
||||
|
||||
public String getAgentName() { |
||||
return agentName; |
||||
} |
||||
|
||||
public void setAgentName(String agentName) { |
||||
this.agentName = agentName; |
||||
} |
||||
|
||||
public Long getSalesmanId() { |
||||
return salesmanId; |
||||
} |
||||
|
||||
public void setSalesmanId(Long salesmanId) { |
||||
this.salesmanId = salesmanId; |
||||
} |
||||
|
||||
public String getSalesmanName() { |
||||
return salesmanName; |
||||
} |
||||
|
||||
public void setSalesmanName(String salesmanName) { |
||||
this.salesmanName = salesmanName; |
||||
} |
||||
|
||||
public Long getMerId() { |
||||
return merId; |
||||
} |
||||
|
||||
public void setMerId(Long merId) { |
||||
this.merId = merId; |
||||
} |
||||
|
||||
public String getMerName() { |
||||
return merName; |
||||
} |
||||
|
||||
public void setMerName(String merName) { |
||||
this.merName = merName; |
||||
} |
||||
|
||||
public Long getStoreId() { |
||||
return storeId; |
||||
} |
||||
|
||||
public void setStoreId(Long storeId) { |
||||
this.storeId = storeId; |
||||
} |
||||
|
||||
public String getStoreName() { |
||||
return storeName; |
||||
} |
||||
|
||||
public void setStoreName(String storeName) { |
||||
this.storeName = storeName; |
||||
} |
||||
|
||||
public Integer getDeviceType() { |
||||
return deviceType; |
||||
} |
||||
|
||||
public void setDeviceType(Integer deviceType) { |
||||
this.deviceType = deviceType; |
||||
} |
||||
|
||||
public String getDeviceNo() { |
||||
return deviceNo; |
||||
} |
||||
|
||||
public void setDeviceNo(String deviceNo) { |
||||
this.deviceNo = deviceNo; |
||||
} |
||||
|
||||
public String getDeviceImsi() { |
||||
return deviceImsi; |
||||
} |
||||
|
||||
public void setDeviceImsi(String deviceImsi) { |
||||
this.deviceImsi = deviceImsi; |
||||
} |
||||
|
||||
public String getDeviceIccid() { |
||||
return deviceIccid; |
||||
} |
||||
|
||||
public void setDeviceIccid(String deviceIccid) { |
||||
this.deviceIccid = deviceIccid; |
||||
} |
||||
|
||||
public Integer getStatus() { |
||||
return status; |
||||
} |
||||
|
||||
public void setStatus(Integer status) { |
||||
this.status = status; |
||||
} |
||||
|
||||
public Boolean getBindStatus() { |
||||
return bindStatus; |
||||
} |
||||
|
||||
public void setBindStatus(Boolean bindStatus) { |
||||
this.bindStatus = bindStatus; |
||||
} |
||||
|
||||
public Date getBindTime() { |
||||
return bindTime; |
||||
} |
||||
|
||||
public void setBindTime(Date bindTime) { |
||||
this.bindTime = bindTime; |
||||
} |
||||
|
||||
public Long getOpUserId() { |
||||
return opUserId; |
||||
} |
||||
|
||||
public void setOpUserId(Long opUserId) { |
||||
this.opUserId = opUserId; |
||||
} |
||||
|
||||
public String getOpUserName() { |
||||
return opUserName; |
||||
} |
||||
|
||||
public void setOpUserName(String opUserName) { |
||||
this.opUserName = opUserName; |
||||
} |
||||
|
||||
public Date getCreateTime() { |
||||
return createTime; |
||||
} |
||||
|
||||
public void setCreateTime(Date createTime) { |
||||
this.createTime = createTime; |
||||
} |
||||
|
||||
public Date getUpdateTime() { |
||||
return updateTime; |
||||
} |
||||
|
||||
public void setUpdateTime(Date updateTime) { |
||||
this.updateTime = updateTime; |
||||
} |
||||
|
||||
public String getExt1() { |
||||
return ext1; |
||||
} |
||||
|
||||
public void setExt1(String ext1) { |
||||
this.ext1 = ext1; |
||||
} |
||||
|
||||
public String getExt2() { |
||||
return ext2; |
||||
} |
||||
|
||||
public void setExt2(String ext2) { |
||||
this.ext2 = ext2; |
||||
} |
||||
|
||||
public String getExt3() { |
||||
return ext3; |
||||
} |
||||
|
||||
public void setExt3(String ext3) { |
||||
this.ext3 = ext3; |
||||
} |
||||
|
||||
@Override |
||||
public boolean equals(Object that) { |
||||
if (this == that) { |
||||
return true; |
||||
} |
||||
if (that == null) { |
||||
return false; |
||||
} |
||||
if (getClass() != that.getClass()) { |
||||
return false; |
||||
} |
||||
BsDevice other = (BsDevice) that; |
||||
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) |
||||
&& (this.getCompanyId() == null ? other.getCompanyId() == null : this.getCompanyId().equals(other.getCompanyId())) |
||||
&& (this.getCompanyName() == null ? other.getCompanyName() == null : this.getCompanyName().equals(other.getCompanyName())) |
||||
&& (this.getAgentId() == null ? other.getAgentId() == null : this.getAgentId().equals(other.getAgentId())) |
||||
&& (this.getAgentName() == null ? other.getAgentName() == null : this.getAgentName().equals(other.getAgentName())) |
||||
&& (this.getSalesmanId() == null ? other.getSalesmanId() == null : this.getSalesmanId().equals(other.getSalesmanId())) |
||||
&& (this.getSalesmanName() == null ? other.getSalesmanName() == null : this.getSalesmanName().equals(other.getSalesmanName())) |
||||
&& (this.getMerId() == null ? other.getMerId() == null : this.getMerId().equals(other.getMerId())) |
||||
&& (this.getMerName() == null ? other.getMerName() == null : this.getMerName().equals(other.getMerName())) |
||||
&& (this.getStoreId() == null ? other.getStoreId() == null : this.getStoreId().equals(other.getStoreId())) |
||||
&& (this.getStoreName() == null ? other.getStoreName() == null : this.getStoreName().equals(other.getStoreName())) |
||||
&& (this.getDeviceType() == null ? other.getDeviceType() == null : this.getDeviceType().equals(other.getDeviceType())) |
||||
&& (this.getDeviceNo() == null ? other.getDeviceNo() == null : this.getDeviceNo().equals(other.getDeviceNo())) |
||||
&& (this.getDeviceImsi() == null ? other.getDeviceImsi() == null : this.getDeviceImsi().equals(other.getDeviceImsi())) |
||||
&& (this.getDeviceIccid() == null ? other.getDeviceIccid() == null : this.getDeviceIccid().equals(other.getDeviceIccid())) |
||||
&& (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus())) |
||||
&& (this.getBindStatus() == null ? other.getBindStatus() == null : this.getBindStatus().equals(other.getBindStatus())) |
||||
&& (this.getBindTime() == null ? other.getBindTime() == null : this.getBindTime().equals(other.getBindTime())) |
||||
&& (this.getOpUserId() == null ? other.getOpUserId() == null : this.getOpUserId().equals(other.getOpUserId())) |
||||
&& (this.getOpUserName() == null ? other.getOpUserName() == null : this.getOpUserName().equals(other.getOpUserName())) |
||||
&& (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) |
||||
&& (this.getUpdateTime() == null ? other.getUpdateTime() == null : this.getUpdateTime().equals(other.getUpdateTime())) |
||||
&& (this.getExt1() == null ? other.getExt1() == null : this.getExt1().equals(other.getExt1())) |
||||
&& (this.getExt2() == null ? other.getExt2() == null : this.getExt2().equals(other.getExt2())) |
||||
&& (this.getExt3() == null ? other.getExt3() == null : this.getExt3().equals(other.getExt3())); |
||||
} |
||||
|
||||
@Override |
||||
public int hashCode() { |
||||
final int prime = 31; |
||||
int result = 1; |
||||
result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); |
||||
result = prime * result + ((getCompanyId() == null) ? 0 : getCompanyId().hashCode()); |
||||
result = prime * result + ((getCompanyName() == null) ? 0 : getCompanyName().hashCode()); |
||||
result = prime * result + ((getAgentId() == null) ? 0 : getAgentId().hashCode()); |
||||
result = prime * result + ((getAgentName() == null) ? 0 : getAgentName().hashCode()); |
||||
result = prime * result + ((getSalesmanId() == null) ? 0 : getSalesmanId().hashCode()); |
||||
result = prime * result + ((getSalesmanName() == null) ? 0 : getSalesmanName().hashCode()); |
||||
result = prime * result + ((getMerId() == null) ? 0 : getMerId().hashCode()); |
||||
result = prime * result + ((getMerName() == null) ? 0 : getMerName().hashCode()); |
||||
result = prime * result + ((getStoreId() == null) ? 0 : getStoreId().hashCode()); |
||||
result = prime * result + ((getStoreName() == null) ? 0 : getStoreName().hashCode()); |
||||
result = prime * result + ((getDeviceType() == null) ? 0 : getDeviceType().hashCode()); |
||||
result = prime * result + ((getDeviceNo() == null) ? 0 : getDeviceNo().hashCode()); |
||||
result = prime * result + ((getDeviceImsi() == null) ? 0 : getDeviceImsi().hashCode()); |
||||
result = prime * result + ((getDeviceIccid() == null) ? 0 : getDeviceIccid().hashCode()); |
||||
result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode()); |
||||
result = prime * result + ((getBindStatus() == null) ? 0 : getBindStatus().hashCode()); |
||||
result = prime * result + ((getBindTime() == null) ? 0 : getBindTime().hashCode()); |
||||
result = prime * result + ((getOpUserId() == null) ? 0 : getOpUserId().hashCode()); |
||||
result = prime * result + ((getOpUserName() == null) ? 0 : getOpUserName().hashCode()); |
||||
result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); |
||||
result = prime * result + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode()); |
||||
result = prime * result + ((getExt1() == null) ? 0 : getExt1().hashCode()); |
||||
result = prime * result + ((getExt2() == null) ? 0 : getExt2().hashCode()); |
||||
result = prime * result + ((getExt3() == null) ? 0 : getExt3().hashCode()); |
||||
return result; |
||||
} |
||||
|
||||
@Override |
||||
public String toString() { |
||||
StringBuilder sb = new StringBuilder(); |
||||
sb.append(getClass().getSimpleName()); |
||||
sb.append(" ["); |
||||
sb.append("Hash = ").append(hashCode()); |
||||
sb.append(", id=").append(id); |
||||
sb.append(", companyId=").append(companyId); |
||||
sb.append(", companyName=").append(companyName); |
||||
sb.append(", agentId=").append(agentId); |
||||
sb.append(", agentName=").append(agentName); |
||||
sb.append(", salesmanId=").append(salesmanId); |
||||
sb.append(", salesmanName=").append(salesmanName); |
||||
sb.append(", merId=").append(merId); |
||||
sb.append(", merName=").append(merName); |
||||
sb.append(", storeId=").append(storeId); |
||||
sb.append(", storeName=").append(storeName); |
||||
sb.append(", deviceType=").append(deviceType); |
||||
sb.append(", deviceNo=").append(deviceNo); |
||||
sb.append(", deviceImsi=").append(deviceImsi); |
||||
sb.append(", deviceIccid=").append(deviceIccid); |
||||
sb.append(", status=").append(status); |
||||
sb.append(", bindStatus=").append(bindStatus); |
||||
sb.append(", bindTime=").append(bindTime); |
||||
sb.append(", opUserId=").append(opUserId); |
||||
sb.append(", opUserName=").append(opUserName); |
||||
sb.append(", createTime=").append(createTime); |
||||
sb.append(", updateTime=").append(updateTime); |
||||
sb.append(", ext1=").append(ext1); |
||||
sb.append(", ext2=").append(ext2); |
||||
sb.append(", ext3=").append(ext3); |
||||
sb.append(", serialVersionUID=").append(serialVersionUID); |
||||
sb.append("]"); |
||||
return sb.toString(); |
||||
} |
||||
} |
File diff suppressed because it is too large
Load Diff
@ -1,425 +0,0 @@ |
||||
package com.hai.entity; |
||||
|
||||
import java.io.Serializable; |
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* bs_device_order |
||||
* @author |
||||
*/ |
||||
/** |
||||
* |
||||
* 代码由工具生成 |
||||
* |
||||
**/ |
||||
public class BsDeviceOrder implements Serializable { |
||||
/** |
||||
* 主键 |
||||
*/ |
||||
private Long id; |
||||
|
||||
/** |
||||
* 订单类型 1:4G音响押金 |
||||
*/ |
||||
private Integer orderType; |
||||
|
||||
/** |
||||
* 交易订单号 |
||||
*/ |
||||
private String orderNo; |
||||
|
||||
/** |
||||
* 支付流水号 |
||||
*/ |
||||
private String paySerialNo; |
||||
|
||||
/** |
||||
* 设备数量 |
||||
*/ |
||||
private Integer deviceNum; |
||||
|
||||
/** |
||||
* 订单价格 |
||||
*/ |
||||
private BigDecimal orderPrice; |
||||
|
||||
/** |
||||
* 支付金额 |
||||
*/ |
||||
private BigDecimal payPrice; |
||||
|
||||
/** |
||||
* 实付金额 |
||||
*/ |
||||
private BigDecimal payRealPrice; |
||||
|
||||
/** |
||||
* 创建时间 |
||||
*/ |
||||
private Date createTime; |
||||
|
||||
/** |
||||
* 支付时间 |
||||
*/ |
||||
private Date payTime; |
||||
|
||||
/** |
||||
* 状态 0:删除 1:待支付 2:已支付 3:已完成 4:已退款 |
||||
*/ |
||||
private Integer status; |
||||
|
||||
/** |
||||
* 公司id |
||||
*/ |
||||
private Long companyId; |
||||
|
||||
/** |
||||
* 公司名称 |
||||
*/ |
||||
private String companyName; |
||||
|
||||
/** |
||||
* 代理商id |
||||
*/ |
||||
private Long agentId; |
||||
|
||||
/** |
||||
* 代理商名称 |
||||
*/ |
||||
private String agentName; |
||||
|
||||
/** |
||||
* 业务员id |
||||
*/ |
||||
private Long salesmanId; |
||||
|
||||
/** |
||||
* 业务名称 |
||||
*/ |
||||
private String salesmanName; |
||||
|
||||
/** |
||||
* 商户id |
||||
*/ |
||||
private Long merId; |
||||
|
||||
/** |
||||
* 商户名称 |
||||
*/ |
||||
private String merName; |
||||
|
||||
/** |
||||
* 门店id |
||||
*/ |
||||
private Long storeId; |
||||
|
||||
/** |
||||
* 门店名称 |
||||
*/ |
||||
private String storeName; |
||||
|
||||
private String ext1; |
||||
|
||||
private String ext2; |
||||
|
||||
private String ext3; |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
public Long getId() { |
||||
return id; |
||||
} |
||||
|
||||
public void setId(Long id) { |
||||
this.id = id; |
||||
} |
||||
|
||||
public Integer getOrderType() { |
||||
return orderType; |
||||
} |
||||
|
||||
public void setOrderType(Integer orderType) { |
||||
this.orderType = orderType; |
||||
} |
||||
|
||||
public String getOrderNo() { |
||||
return orderNo; |
||||
} |
||||
|
||||
public void setOrderNo(String orderNo) { |
||||
this.orderNo = orderNo; |
||||
} |
||||
|
||||
public String getPaySerialNo() { |
||||
return paySerialNo; |
||||
} |
||||
|
||||
public void setPaySerialNo(String paySerialNo) { |
||||
this.paySerialNo = paySerialNo; |
||||
} |
||||
|
||||
public Integer getDeviceNum() { |
||||
return deviceNum; |
||||
} |
||||
|
||||
public void setDeviceNum(Integer deviceNum) { |
||||
this.deviceNum = deviceNum; |
||||
} |
||||
|
||||
public BigDecimal getOrderPrice() { |
||||
return orderPrice; |
||||
} |
||||
|
||||
public void setOrderPrice(BigDecimal orderPrice) { |
||||
this.orderPrice = orderPrice; |
||||
} |
||||
|
||||
public BigDecimal getPayPrice() { |
||||
return payPrice; |
||||
} |
||||
|
||||
public void setPayPrice(BigDecimal payPrice) { |
||||
this.payPrice = payPrice; |
||||
} |
||||
|
||||
public BigDecimal getPayRealPrice() { |
||||
return payRealPrice; |
||||
} |
||||
|
||||
public void setPayRealPrice(BigDecimal payRealPrice) { |
||||
this.payRealPrice = payRealPrice; |
||||
} |
||||
|
||||
public Date getCreateTime() { |
||||
return createTime; |
||||
} |
||||
|
||||
public void setCreateTime(Date createTime) { |
||||
this.createTime = createTime; |
||||
} |
||||
|
||||
public Date getPayTime() { |
||||
return payTime; |
||||
} |
||||
|
||||
public void setPayTime(Date payTime) { |
||||
this.payTime = payTime; |
||||
} |
||||
|
||||
public Integer getStatus() { |
||||
return status; |
||||
} |
||||
|
||||
public void setStatus(Integer status) { |
||||
this.status = status; |
||||
} |
||||
|
||||
public Long getCompanyId() { |
||||
return companyId; |
||||
} |
||||
|
||||
public void setCompanyId(Long companyId) { |
||||
this.companyId = companyId; |
||||
} |
||||
|
||||
public String getCompanyName() { |
||||
return companyName; |
||||
} |
||||
|
||||
public void setCompanyName(String companyName) { |
||||
this.companyName = companyName; |
||||
} |
||||
|
||||
public Long getAgentId() { |
||||
return agentId; |
||||
} |
||||
|
||||
public void setAgentId(Long agentId) { |
||||
this.agentId = agentId; |
||||
} |
||||
|
||||
public String getAgentName() { |
||||
return agentName; |
||||
} |
||||
|
||||
public void setAgentName(String agentName) { |
||||
this.agentName = agentName; |
||||
} |
||||
|
||||
public Long getSalesmanId() { |
||||
return salesmanId; |
||||
} |
||||
|
||||
public void setSalesmanId(Long salesmanId) { |
||||
this.salesmanId = salesmanId; |
||||
} |
||||
|
||||
public String getSalesmanName() { |
||||
return salesmanName; |
||||
} |
||||
|
||||
public void setSalesmanName(String salesmanName) { |
||||
this.salesmanName = salesmanName; |
||||
} |
||||
|
||||
public Long getMerId() { |
||||
return merId; |
||||
} |
||||
|
||||
public void setMerId(Long merId) { |
||||
this.merId = merId; |
||||
} |
||||
|
||||
public String getMerName() { |
||||
return merName; |
||||
} |
||||
|
||||
public void setMerName(String merName) { |
||||
this.merName = merName; |
||||
} |
||||
|
||||
public Long getStoreId() { |
||||
return storeId; |
||||
} |
||||
|
||||
public void setStoreId(Long storeId) { |
||||
this.storeId = storeId; |
||||
} |
||||
|
||||
public String getStoreName() { |
||||
return storeName; |
||||
} |
||||
|
||||
public void setStoreName(String storeName) { |
||||
this.storeName = storeName; |
||||
} |
||||
|
||||
public String getExt1() { |
||||
return ext1; |
||||
} |
||||
|
||||
public void setExt1(String ext1) { |
||||
this.ext1 = ext1; |
||||
} |
||||
|
||||
public String getExt2() { |
||||
return ext2; |
||||
} |
||||
|
||||
public void setExt2(String ext2) { |
||||
this.ext2 = ext2; |
||||
} |
||||
|
||||
public String getExt3() { |
||||
return ext3; |
||||
} |
||||
|
||||
public void setExt3(String ext3) { |
||||
this.ext3 = ext3; |
||||
} |
||||
|
||||
@Override |
||||
public boolean equals(Object that) { |
||||
if (this == that) { |
||||
return true; |
||||
} |
||||
if (that == null) { |
||||
return false; |
||||
} |
||||
if (getClass() != that.getClass()) { |
||||
return false; |
||||
} |
||||
BsDeviceOrder other = (BsDeviceOrder) that; |
||||
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) |
||||
&& (this.getOrderType() == null ? other.getOrderType() == null : this.getOrderType().equals(other.getOrderType())) |
||||
&& (this.getOrderNo() == null ? other.getOrderNo() == null : this.getOrderNo().equals(other.getOrderNo())) |
||||
&& (this.getPaySerialNo() == null ? other.getPaySerialNo() == null : this.getPaySerialNo().equals(other.getPaySerialNo())) |
||||
&& (this.getDeviceNum() == null ? other.getDeviceNum() == null : this.getDeviceNum().equals(other.getDeviceNum())) |
||||
&& (this.getOrderPrice() == null ? other.getOrderPrice() == null : this.getOrderPrice().equals(other.getOrderPrice())) |
||||
&& (this.getPayPrice() == null ? other.getPayPrice() == null : this.getPayPrice().equals(other.getPayPrice())) |
||||
&& (this.getPayRealPrice() == null ? other.getPayRealPrice() == null : this.getPayRealPrice().equals(other.getPayRealPrice())) |
||||
&& (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) |
||||
&& (this.getPayTime() == null ? other.getPayTime() == null : this.getPayTime().equals(other.getPayTime())) |
||||
&& (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus())) |
||||
&& (this.getCompanyId() == null ? other.getCompanyId() == null : this.getCompanyId().equals(other.getCompanyId())) |
||||
&& (this.getCompanyName() == null ? other.getCompanyName() == null : this.getCompanyName().equals(other.getCompanyName())) |
||||
&& (this.getAgentId() == null ? other.getAgentId() == null : this.getAgentId().equals(other.getAgentId())) |
||||
&& (this.getAgentName() == null ? other.getAgentName() == null : this.getAgentName().equals(other.getAgentName())) |
||||
&& (this.getSalesmanId() == null ? other.getSalesmanId() == null : this.getSalesmanId().equals(other.getSalesmanId())) |
||||
&& (this.getSalesmanName() == null ? other.getSalesmanName() == null : this.getSalesmanName().equals(other.getSalesmanName())) |
||||
&& (this.getMerId() == null ? other.getMerId() == null : this.getMerId().equals(other.getMerId())) |
||||
&& (this.getMerName() == null ? other.getMerName() == null : this.getMerName().equals(other.getMerName())) |
||||
&& (this.getStoreId() == null ? other.getStoreId() == null : this.getStoreId().equals(other.getStoreId())) |
||||
&& (this.getStoreName() == null ? other.getStoreName() == null : this.getStoreName().equals(other.getStoreName())) |
||||
&& (this.getExt1() == null ? other.getExt1() == null : this.getExt1().equals(other.getExt1())) |
||||
&& (this.getExt2() == null ? other.getExt2() == null : this.getExt2().equals(other.getExt2())) |
||||
&& (this.getExt3() == null ? other.getExt3() == null : this.getExt3().equals(other.getExt3())); |
||||
} |
||||
|
||||
@Override |
||||
public int hashCode() { |
||||
final int prime = 31; |
||||
int result = 1; |
||||
result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); |
||||
result = prime * result + ((getOrderType() == null) ? 0 : getOrderType().hashCode()); |
||||
result = prime * result + ((getOrderNo() == null) ? 0 : getOrderNo().hashCode()); |
||||
result = prime * result + ((getPaySerialNo() == null) ? 0 : getPaySerialNo().hashCode()); |
||||
result = prime * result + ((getDeviceNum() == null) ? 0 : getDeviceNum().hashCode()); |
||||
result = prime * result + ((getOrderPrice() == null) ? 0 : getOrderPrice().hashCode()); |
||||
result = prime * result + ((getPayPrice() == null) ? 0 : getPayPrice().hashCode()); |
||||
result = prime * result + ((getPayRealPrice() == null) ? 0 : getPayRealPrice().hashCode()); |
||||
result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); |
||||
result = prime * result + ((getPayTime() == null) ? 0 : getPayTime().hashCode()); |
||||
result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode()); |
||||
result = prime * result + ((getCompanyId() == null) ? 0 : getCompanyId().hashCode()); |
||||
result = prime * result + ((getCompanyName() == null) ? 0 : getCompanyName().hashCode()); |
||||
result = prime * result + ((getAgentId() == null) ? 0 : getAgentId().hashCode()); |
||||
result = prime * result + ((getAgentName() == null) ? 0 : getAgentName().hashCode()); |
||||
result = prime * result + ((getSalesmanId() == null) ? 0 : getSalesmanId().hashCode()); |
||||
result = prime * result + ((getSalesmanName() == null) ? 0 : getSalesmanName().hashCode()); |
||||
result = prime * result + ((getMerId() == null) ? 0 : getMerId().hashCode()); |
||||
result = prime * result + ((getMerName() == null) ? 0 : getMerName().hashCode()); |
||||
result = prime * result + ((getStoreId() == null) ? 0 : getStoreId().hashCode()); |
||||
result = prime * result + ((getStoreName() == null) ? 0 : getStoreName().hashCode()); |
||||
result = prime * result + ((getExt1() == null) ? 0 : getExt1().hashCode()); |
||||
result = prime * result + ((getExt2() == null) ? 0 : getExt2().hashCode()); |
||||
result = prime * result + ((getExt3() == null) ? 0 : getExt3().hashCode()); |
||||
return result; |
||||
} |
||||
|
||||
@Override |
||||
public String toString() { |
||||
StringBuilder sb = new StringBuilder(); |
||||
sb.append(getClass().getSimpleName()); |
||||
sb.append(" ["); |
||||
sb.append("Hash = ").append(hashCode()); |
||||
sb.append(", id=").append(id); |
||||
sb.append(", orderType=").append(orderType); |
||||
sb.append(", orderNo=").append(orderNo); |
||||
sb.append(", paySerialNo=").append(paySerialNo); |
||||
sb.append(", deviceNum=").append(deviceNum); |
||||
sb.append(", orderPrice=").append(orderPrice); |
||||
sb.append(", payPrice=").append(payPrice); |
||||
sb.append(", payRealPrice=").append(payRealPrice); |
||||
sb.append(", createTime=").append(createTime); |
||||
sb.append(", payTime=").append(payTime); |
||||
sb.append(", status=").append(status); |
||||
sb.append(", companyId=").append(companyId); |
||||
sb.append(", companyName=").append(companyName); |
||||
sb.append(", agentId=").append(agentId); |
||||
sb.append(", agentName=").append(agentName); |
||||
sb.append(", salesmanId=").append(salesmanId); |
||||
sb.append(", salesmanName=").append(salesmanName); |
||||
sb.append(", merId=").append(merId); |
||||
sb.append(", merName=").append(merName); |
||||
sb.append(", storeId=").append(storeId); |
||||
sb.append(", storeName=").append(storeName); |
||||
sb.append(", ext1=").append(ext1); |
||||
sb.append(", ext2=").append(ext2); |
||||
sb.append(", ext3=").append(ext3); |
||||
sb.append(", serialVersionUID=").append(serialVersionUID); |
||||
sb.append("]"); |
||||
return sb.toString(); |
||||
} |
||||
} |
@ -1,424 +0,0 @@ |
||||
package com.hai.entity; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* bs_device_order_assign |
||||
* @author |
||||
*/ |
||||
/** |
||||
* |
||||
* 代码由工具生成 |
||||
* |
||||
**/ |
||||
public class BsDeviceOrderAssign implements Serializable { |
||||
/** |
||||
* 主键 |
||||
*/ |
||||
private Long id; |
||||
|
||||
/** |
||||
* 交易订单id |
||||
*/ |
||||
private Long orderId; |
||||
|
||||
/** |
||||
* 交易订单号 |
||||
*/ |
||||
private String orderNo; |
||||
|
||||
/** |
||||
* 订单类型 1:4G音响押金 |
||||
*/ |
||||
private Integer orderType; |
||||
|
||||
/** |
||||
* 支付流水号 |
||||
*/ |
||||
private String paySerialNo; |
||||
|
||||
/** |
||||
* 退款订单id |
||||
*/ |
||||
private Long orderRefundId; |
||||
|
||||
/** |
||||
* 退款订单号 |
||||
*/ |
||||
private String orderRefundNo; |
||||
|
||||
/** |
||||
* 设备id |
||||
*/ |
||||
private Integer deviceId; |
||||
|
||||
/** |
||||
* 设备编号 |
||||
*/ |
||||
private String deviceNo; |
||||
|
||||
/** |
||||
* 创建时间 |
||||
*/ |
||||
private Date createTime; |
||||
|
||||
/** |
||||
* 状态 0:删除 1:使用中 2:退款中 3:退款成功 |
||||
*/ |
||||
private Integer status; |
||||
|
||||
/** |
||||
* 公司id |
||||
*/ |
||||
private Long companyId; |
||||
|
||||
/** |
||||
* 公司名称 |
||||
*/ |
||||
private String companyName; |
||||
|
||||
/** |
||||
* 代理商id |
||||
*/ |
||||
private Long agentId; |
||||
|
||||
/** |
||||
* 代理商名称 |
||||
*/ |
||||
private String agentName; |
||||
|
||||
/** |
||||
* 业务员id |
||||
*/ |
||||
private Long salesmanId; |
||||
|
||||
/** |
||||
* 业务名称 |
||||
*/ |
||||
private String salesmanName; |
||||
|
||||
/** |
||||
* 商户id |
||||
*/ |
||||
private Long merId; |
||||
|
||||
/** |
||||
* 商户名称 |
||||
*/ |
||||
private String merName; |
||||
|
||||
/** |
||||
* 门店id |
||||
*/ |
||||
private Long storeId; |
||||
|
||||
/** |
||||
* 门店名称 |
||||
*/ |
||||
private String storeName; |
||||
|
||||
private String ext1; |
||||
|
||||
private String ext2; |
||||
|
||||
private String ext3; |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
public Long getId() { |
||||
return id; |
||||
} |
||||
|
||||
public void setId(Long id) { |
||||
this.id = id; |
||||
} |
||||
|
||||
public Long getOrderId() { |
||||
return orderId; |
||||
} |
||||
|
||||
public void setOrderId(Long orderId) { |
||||
this.orderId = orderId; |
||||
} |
||||
|
||||
public String getOrderNo() { |
||||
return orderNo; |
||||
} |
||||
|
||||
public void setOrderNo(String orderNo) { |
||||
this.orderNo = orderNo; |
||||
} |
||||
|
||||
public Integer getOrderType() { |
||||
return orderType; |
||||
} |
||||
|
||||
public void setOrderType(Integer orderType) { |
||||
this.orderType = orderType; |
||||
} |
||||
|
||||
public String getPaySerialNo() { |
||||
return paySerialNo; |
||||
} |
||||
|
||||
public void setPaySerialNo(String paySerialNo) { |
||||
this.paySerialNo = paySerialNo; |
||||
} |
||||
|
||||
public Long getOrderRefundId() { |
||||
return orderRefundId; |
||||
} |
||||
|
||||
public void setOrderRefundId(Long orderRefundId) { |
||||
this.orderRefundId = orderRefundId; |
||||
} |
||||
|
||||
public String getOrderRefundNo() { |
||||
return orderRefundNo; |
||||
} |
||||
|
||||
public void setOrderRefundNo(String orderRefundNo) { |
||||
this.orderRefundNo = orderRefundNo; |
||||
} |
||||
|
||||
public Integer getDeviceId() { |
||||
return deviceId; |
||||
} |
||||
|
||||
public void setDeviceId(Integer deviceId) { |
||||
this.deviceId = deviceId; |
||||
} |
||||
|
||||
public String getDeviceNo() { |
||||
return deviceNo; |
||||
} |
||||
|
||||
public void setDeviceNo(String deviceNo) { |
||||
this.deviceNo = deviceNo; |
||||
} |
||||
|
||||
public Date getCreateTime() { |
||||
return createTime; |
||||
} |
||||
|
||||
public void setCreateTime(Date createTime) { |
||||
this.createTime = createTime; |
||||
} |
||||
|
||||
public Integer getStatus() { |
||||
return status; |
||||
} |
||||
|
||||
public void setStatus(Integer status) { |
||||
this.status = status; |
||||
} |
||||
|
||||
public Long getCompanyId() { |
||||
return companyId; |
||||
} |
||||
|
||||
public void setCompanyId(Long companyId) { |
||||
this.companyId = companyId; |
||||
} |
||||
|
||||
public String getCompanyName() { |
||||
return companyName; |
||||
} |
||||
|
||||
public void setCompanyName(String companyName) { |
||||
this.companyName = companyName; |
||||
} |
||||
|
||||
public Long getAgentId() { |
||||
return agentId; |
||||
} |
||||
|
||||
public void setAgentId(Long agentId) { |
||||
this.agentId = agentId; |
||||
} |
||||
|
||||
public String getAgentName() { |
||||
return agentName; |
||||
} |
||||
|
||||
public void setAgentName(String agentName) { |
||||
this.agentName = agentName; |
||||
} |
||||
|
||||
public Long getSalesmanId() { |
||||
return salesmanId; |
||||
} |
||||
|
||||
public void setSalesmanId(Long salesmanId) { |
||||
this.salesmanId = salesmanId; |
||||
} |
||||
|
||||
public String getSalesmanName() { |
||||
return salesmanName; |
||||
} |
||||
|
||||
public void setSalesmanName(String salesmanName) { |
||||
this.salesmanName = salesmanName; |
||||
} |
||||
|
||||
public Long getMerId() { |
||||
return merId; |
||||
} |
||||
|
||||
public void setMerId(Long merId) { |
||||
this.merId = merId; |
||||
} |
||||
|
||||
public String getMerName() { |
||||
return merName; |
||||
} |
||||
|
||||
public void setMerName(String merName) { |
||||
this.merName = merName; |
||||
} |
||||
|
||||
public Long getStoreId() { |
||||
return storeId; |
||||
} |
||||
|
||||
public void setStoreId(Long storeId) { |
||||
this.storeId = storeId; |
||||
} |
||||
|
||||
public String getStoreName() { |
||||
return storeName; |
||||
} |
||||
|
||||
public void setStoreName(String storeName) { |
||||
this.storeName = storeName; |
||||
} |
||||
|
||||
public String getExt1() { |
||||
return ext1; |
||||
} |
||||
|
||||
public void setExt1(String ext1) { |
||||
this.ext1 = ext1; |
||||
} |
||||
|
||||
public String getExt2() { |
||||
return ext2; |
||||
} |
||||
|
||||
public void setExt2(String ext2) { |
||||
this.ext2 = ext2; |
||||
} |
||||
|
||||
public String getExt3() { |
||||
return ext3; |
||||
} |
||||
|
||||
public void setExt3(String ext3) { |
||||
this.ext3 = ext3; |
||||
} |
||||
|
||||
@Override |
||||
public boolean equals(Object that) { |
||||
if (this == that) { |
||||
return true; |
||||
} |
||||
if (that == null) { |
||||
return false; |
||||
} |
||||
if (getClass() != that.getClass()) { |
||||
return false; |
||||
} |
||||
BsDeviceOrderAssign other = (BsDeviceOrderAssign) that; |
||||
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) |
||||
&& (this.getOrderId() == null ? other.getOrderId() == null : this.getOrderId().equals(other.getOrderId())) |
||||
&& (this.getOrderNo() == null ? other.getOrderNo() == null : this.getOrderNo().equals(other.getOrderNo())) |
||||
&& (this.getOrderType() == null ? other.getOrderType() == null : this.getOrderType().equals(other.getOrderType())) |
||||
&& (this.getPaySerialNo() == null ? other.getPaySerialNo() == null : this.getPaySerialNo().equals(other.getPaySerialNo())) |
||||
&& (this.getOrderRefundId() == null ? other.getOrderRefundId() == null : this.getOrderRefundId().equals(other.getOrderRefundId())) |
||||
&& (this.getOrderRefundNo() == null ? other.getOrderRefundNo() == null : this.getOrderRefundNo().equals(other.getOrderRefundNo())) |
||||
&& (this.getDeviceId() == null ? other.getDeviceId() == null : this.getDeviceId().equals(other.getDeviceId())) |
||||
&& (this.getDeviceNo() == null ? other.getDeviceNo() == null : this.getDeviceNo().equals(other.getDeviceNo())) |
||||
&& (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) |
||||
&& (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus())) |
||||
&& (this.getCompanyId() == null ? other.getCompanyId() == null : this.getCompanyId().equals(other.getCompanyId())) |
||||
&& (this.getCompanyName() == null ? other.getCompanyName() == null : this.getCompanyName().equals(other.getCompanyName())) |
||||
&& (this.getAgentId() == null ? other.getAgentId() == null : this.getAgentId().equals(other.getAgentId())) |
||||
&& (this.getAgentName() == null ? other.getAgentName() == null : this.getAgentName().equals(other.getAgentName())) |
||||
&& (this.getSalesmanId() == null ? other.getSalesmanId() == null : this.getSalesmanId().equals(other.getSalesmanId())) |
||||
&& (this.getSalesmanName() == null ? other.getSalesmanName() == null : this.getSalesmanName().equals(other.getSalesmanName())) |
||||
&& (this.getMerId() == null ? other.getMerId() == null : this.getMerId().equals(other.getMerId())) |
||||
&& (this.getMerName() == null ? other.getMerName() == null : this.getMerName().equals(other.getMerName())) |
||||
&& (this.getStoreId() == null ? other.getStoreId() == null : this.getStoreId().equals(other.getStoreId())) |
||||
&& (this.getStoreName() == null ? other.getStoreName() == null : this.getStoreName().equals(other.getStoreName())) |
||||
&& (this.getExt1() == null ? other.getExt1() == null : this.getExt1().equals(other.getExt1())) |
||||
&& (this.getExt2() == null ? other.getExt2() == null : this.getExt2().equals(other.getExt2())) |
||||
&& (this.getExt3() == null ? other.getExt3() == null : this.getExt3().equals(other.getExt3())); |
||||
} |
||||
|
||||
@Override |
||||
public int hashCode() { |
||||
final int prime = 31; |
||||
int result = 1; |
||||
result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); |
||||
result = prime * result + ((getOrderId() == null) ? 0 : getOrderId().hashCode()); |
||||
result = prime * result + ((getOrderNo() == null) ? 0 : getOrderNo().hashCode()); |
||||
result = prime * result + ((getOrderType() == null) ? 0 : getOrderType().hashCode()); |
||||
result = prime * result + ((getPaySerialNo() == null) ? 0 : getPaySerialNo().hashCode()); |
||||
result = prime * result + ((getOrderRefundId() == null) ? 0 : getOrderRefundId().hashCode()); |
||||
result = prime * result + ((getOrderRefundNo() == null) ? 0 : getOrderRefundNo().hashCode()); |
||||
result = prime * result + ((getDeviceId() == null) ? 0 : getDeviceId().hashCode()); |
||||
result = prime * result + ((getDeviceNo() == null) ? 0 : getDeviceNo().hashCode()); |
||||
result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); |
||||
result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode()); |
||||
result = prime * result + ((getCompanyId() == null) ? 0 : getCompanyId().hashCode()); |
||||
result = prime * result + ((getCompanyName() == null) ? 0 : getCompanyName().hashCode()); |
||||
result = prime * result + ((getAgentId() == null) ? 0 : getAgentId().hashCode()); |
||||
result = prime * result + ((getAgentName() == null) ? 0 : getAgentName().hashCode()); |
||||
result = prime * result + ((getSalesmanId() == null) ? 0 : getSalesmanId().hashCode()); |
||||
result = prime * result + ((getSalesmanName() == null) ? 0 : getSalesmanName().hashCode()); |
||||
result = prime * result + ((getMerId() == null) ? 0 : getMerId().hashCode()); |
||||
result = prime * result + ((getMerName() == null) ? 0 : getMerName().hashCode()); |
||||
result = prime * result + ((getStoreId() == null) ? 0 : getStoreId().hashCode()); |
||||
result = prime * result + ((getStoreName() == null) ? 0 : getStoreName().hashCode()); |
||||
result = prime * result + ((getExt1() == null) ? 0 : getExt1().hashCode()); |
||||
result = prime * result + ((getExt2() == null) ? 0 : getExt2().hashCode()); |
||||
result = prime * result + ((getExt3() == null) ? 0 : getExt3().hashCode()); |
||||
return result; |
||||
} |
||||
|
||||
@Override |
||||
public String toString() { |
||||
StringBuilder sb = new StringBuilder(); |
||||
sb.append(getClass().getSimpleName()); |
||||
sb.append(" ["); |
||||
sb.append("Hash = ").append(hashCode()); |
||||
sb.append(", id=").append(id); |
||||
sb.append(", orderId=").append(orderId); |
||||
sb.append(", orderNo=").append(orderNo); |
||||
sb.append(", orderType=").append(orderType); |
||||
sb.append(", paySerialNo=").append(paySerialNo); |
||||
sb.append(", orderRefundId=").append(orderRefundId); |
||||
sb.append(", orderRefundNo=").append(orderRefundNo); |
||||
sb.append(", deviceId=").append(deviceId); |
||||
sb.append(", deviceNo=").append(deviceNo); |
||||
sb.append(", createTime=").append(createTime); |
||||
sb.append(", status=").append(status); |
||||
sb.append(", companyId=").append(companyId); |
||||
sb.append(", companyName=").append(companyName); |
||||
sb.append(", agentId=").append(agentId); |
||||
sb.append(", agentName=").append(agentName); |
||||
sb.append(", salesmanId=").append(salesmanId); |
||||
sb.append(", salesmanName=").append(salesmanName); |
||||
sb.append(", merId=").append(merId); |
||||
sb.append(", merName=").append(merName); |
||||
sb.append(", storeId=").append(storeId); |
||||
sb.append(", storeName=").append(storeName); |
||||
sb.append(", ext1=").append(ext1); |
||||
sb.append(", ext2=").append(ext2); |
||||
sb.append(", ext3=").append(ext3); |
||||
sb.append(", serialVersionUID=").append(serialVersionUID); |
||||
sb.append("]"); |
||||
return sb.toString(); |
||||
} |
||||
} |
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,471 +0,0 @@ |
||||
package com.hai.entity; |
||||
|
||||
import java.io.Serializable; |
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* bs_device_order_refund |
||||
* @author |
||||
*/ |
||||
/** |
||||
* |
||||
* 代码由工具生成 |
||||
* |
||||
**/ |
||||
public class BsDeviceOrderRefund implements Serializable { |
||||
/** |
||||
* 主键 |
||||
*/ |
||||
private Long id; |
||||
|
||||
/** |
||||
* 退款订单号 |
||||
*/ |
||||
private String refundOrderNo; |
||||
|
||||
/** |
||||
* 交易订单id |
||||
*/ |
||||
private Long orderId; |
||||
|
||||
/** |
||||
* 交易订单号 |
||||
*/ |
||||
private String orderNo; |
||||
|
||||
/** |
||||
* 订单类型 1:4G音响押金 |
||||
*/ |
||||
private Integer orderType; |
||||
|
||||
/** |
||||
* 订单分配id |
||||
*/ |
||||
private Long orderAssignId; |
||||
|
||||
/** |
||||
* 设备id |
||||
*/ |
||||
private Long deviceId; |
||||
|
||||
/** |
||||
* 设备编号 |
||||
*/ |
||||
private String deivceNo; |
||||
|
||||
/** |
||||
* 退款金额 |
||||
*/ |
||||
private BigDecimal refund |
||||
|
||||
Price; |
||||
|
||||
/** |
||||
* 创建时间 |
||||
*/ |
||||
private Date createTime; |
||||
|
||||
/** |
||||
* 退款时间 |
||||
*/ |
||||
private Date refundTime; |
||||
|
||||
/** |
||||
* 状态 0:删除 1:退款中 2:退款成功 |
||||
*/ |
||||
private Integer status; |
||||
|
||||
/** |
||||
* 公司id |
||||
*/ |
||||
private Long companyId; |
||||
|
||||
/** |
||||
* 公司名称 |
||||
*/ |
||||
private String companyName; |
||||
|
||||
/** |
||||
* 代理商id |
||||
*/ |
||||
private Long agentId; |
||||
|
||||
/** |
||||
* 代理商名称 |
||||
*/ |
||||
private String agentName; |
||||
|
||||
/** |
||||
* 业务员id |
||||
*/ |
||||
private Long salesmanId; |
||||
|
||||
/** |
||||
* 业务名称 |
||||
*/ |
||||
private String salesmanName; |
||||
|
||||
/** |
||||
* 商户id |
||||
*/ |
||||
private Long merId; |
||||
|
||||
/** |
||||
* 商户名称 |
||||
*/ |
||||
private String merName; |
||||
|
||||
/** |
||||
* 门店id |
||||
*/ |
||||
private Long storeId; |
||||
|
||||
/** |
||||
* 门店名称 |
||||
*/ |
||||
private String storeName; |
||||
|
||||
private String ext1; |
||||
|
||||
private String ext2; |
||||
|
||||
private String ext3; |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
public Long getId() { |
||||
return id; |
||||
} |
||||
|
||||
public void setId(Long id) { |
||||
this.id = id; |
||||
} |
||||
|
||||
public String getRefundOrderNo() { |
||||
return refundOrderNo; |
||||
} |
||||
|
||||
public void setRefundOrderNo(String refundOrderNo) { |
||||
this.refundOrderNo = refundOrderNo; |
||||
} |
||||
|
||||
public Long getOrderId() { |
||||
return orderId; |
||||
} |
||||
|
||||
public void setOrderId(Long orderId) { |
||||
this.orderId = orderId; |
||||
} |
||||
|
||||
public String getOrderNo() { |
||||
return orderNo; |
||||
} |
||||
|
||||
public void setOrderNo(String orderNo) { |
||||
this.orderNo = orderNo; |
||||
} |
||||
|
||||
public Integer getOrderType() { |
||||
return orderType; |
||||
} |
||||
|
||||
public void setOrderType(Integer orderType) { |
||||
this.orderType = orderType; |
||||
} |
||||
|
||||
public Long getOrderAssignId() { |
||||
return orderAssignId; |
||||
} |
||||
|
||||
public void setOrderAssignId(Long orderAssignId) { |
||||
this.orderAssignId = orderAssignId; |
||||
} |
||||
|
||||
public Long getDeviceId() { |
||||
return deviceId; |
||||
} |
||||
|
||||
public void setDeviceId(Long deviceId) { |
||||
this.deviceId = deviceId; |
||||
} |
||||
|
||||
public String getDeivceNo() { |
||||
return deivceNo; |
||||
} |
||||
|
||||
public void setDeivceNo(String deivceNo) { |
||||
this.deivceNo = deivceNo; |
||||
} |
||||
|
||||
public BigDecimal getRefund |
||||
|
||||
Price() { |
||||
return refund |
||||
|
||||
Price; |
||||
} |
||||
|
||||
public void setRefund |
||||
|
||||
Price(BigDecimal refund |
||||
|
||||
Price) { |
||||
this.refund |
||||
|
||||
Price = refund |
||||
|
||||
Price; |
||||
} |
||||
|
||||
public Date getCreateTime() { |
||||
return createTime; |
||||
} |
||||
|
||||
public void setCreateTime(Date createTime) { |
||||
this.createTime = createTime; |
||||
} |
||||
|
||||
public Date getRefundTime() { |
||||
return refundTime; |
||||
} |
||||
|
||||
public void setRefundTime(Date refundTime) { |
||||
this.refundTime = refundTime; |
||||
} |
||||
|
||||
public Integer getStatus() { |
||||
return status; |
||||
} |
||||
|
||||
public void setStatus(Integer status) { |
||||
this.status = status; |
||||
} |
||||
|
||||
public Long getCompanyId() { |
||||
return companyId; |
||||
} |
||||
|
||||
public void setCompanyId(Long companyId) { |
||||
this.companyId = companyId; |
||||
} |
||||
|
||||
public String getCompanyName() { |
||||
return companyName; |
||||
} |
||||
|
||||
public void setCompanyName(String companyName) { |
||||
this.companyName = companyName; |
||||
} |
||||
|
||||
public Long getAgentId() { |
||||
return agentId; |
||||
} |
||||
|
||||
public void setAgentId(Long agentId) { |
||||
this.agentId = agentId; |
||||
} |
||||
|
||||
public String getAgentName() { |
||||
return agentName; |
||||
} |
||||
|
||||
public void setAgentName(String agentName) { |
||||
this.agentName = agentName; |
||||
} |
||||
|
||||
public Long getSalesmanId() { |
||||
return salesmanId; |
||||
} |
||||
|
||||
public void setSalesmanId(Long salesmanId) { |
||||
this.salesmanId = salesmanId; |
||||
} |
||||
|
||||
public String getSalesmanName() { |
||||
return salesmanName; |
||||
} |
||||
|
||||
public void setSalesmanName(String salesmanName) { |
||||
this.salesmanName = salesmanName; |
||||
} |
||||
|
||||
public Long getMerId() { |
||||
return merId; |
||||
} |
||||
|
||||
public void setMerId(Long merId) { |
||||
this.merId = merId; |
||||
} |
||||
|
||||
public String getMerName() { |
||||
return merName; |
||||
} |
||||
|
||||
public void setMerName(String merName) { |
||||
this.merName = merName; |
||||
} |
||||
|
||||
public Long getStoreId() { |
||||
return storeId; |
||||
} |
||||
|
||||
public void setStoreId(Long storeId) { |
||||
this.storeId = storeId; |
||||
} |
||||
|
||||
public String getStoreName() { |
||||
return storeName; |
||||
} |
||||
|
||||
public void setStoreName(String storeName) { |
||||
this.storeName = storeName; |
||||
} |
||||
|
||||
public String getExt1() { |
||||
return ext1; |
||||
} |
||||
|
||||
public void setExt1(String ext1) { |
||||
this.ext1 = ext1; |
||||
} |
||||
|
||||
public String getExt2() { |
||||
return ext2; |
||||
} |
||||
|
||||
public void setExt2(String ext2) { |
||||
this.ext2 = ext2; |
||||
} |
||||
|
||||
public String getExt3() { |
||||
return ext3; |
||||
} |
||||
|
||||
public void setExt3(String ext3) { |
||||
this.ext3 = ext3; |
||||
} |
||||
|
||||
@Override |
||||
public boolean equals(Object that) { |
||||
if (this == that) { |
||||
return true; |
||||
} |
||||
if (that == null) { |
||||
return false; |
||||
} |
||||
if (getClass() != that.getClass()) { |
||||
return false; |
||||
} |
||||
BsDeviceOrderRefund other = (BsDeviceOrderRefund) that; |
||||
return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) |
||||
&& (this.getRefundOrderNo() == null ? other.getRefundOrderNo() == null : this.getRefundOrderNo().equals(other.getRefundOrderNo())) |
||||
&& (this.getOrderId() == null ? other.getOrderId() == null : this.getOrderId().equals(other.getOrderId())) |
||||
&& (this.getOrderNo() == null ? other.getOrderNo() == null : this.getOrderNo().equals(other.getOrderNo())) |
||||
&& (this.getOrderType() == null ? other.getOrderType() == null : this.getOrderType().equals(other.getOrderType())) |
||||
&& (this.getOrderAssignId() == null ? other.getOrderAssignId() == null : this.getOrderAssignId().equals(other.getOrderAssignId())) |
||||
&& (this.getDeviceId() == null ? other.getDeviceId() == null : this.getDeviceId().equals(other.getDeviceId())) |
||||
&& (this.getDeivceNo() == null ? other.getDeivceNo() == null : this.getDeivceNo().equals(other.getDeivceNo())) |
||||
&& (this.getRefund |
||||
|
||||
Price() == null ? other.getRefund |
||||
|
||||
Price() == null : this.getRefund |
||||
|
||||
Price().equals(other.getRefund |
||||
|
||||
Price())) |
||||
&& (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime())) |
||||
&& (this.getRefundTime() == null ? other.getRefundTime() == null : this.getRefundTime().equals(other.getRefundTime())) |
||||
&& (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus())) |
||||
&& (this.getCompanyId() == null ? other.getCompanyId() == null : this.getCompanyId().equals(other.getCompanyId())) |
||||
&& (this.getCompanyName() == null ? other.getCompanyName() == null : this.getCompanyName().equals(other.getCompanyName())) |
||||
&& (this.getAgentId() == null ? other.getAgentId() == null : this.getAgentId().equals(other.getAgentId())) |
||||
&& (this.getAgentName() == null ? other.getAgentName() == null : this.getAgentName().equals(other.getAgentName())) |
||||
&& (this.getSalesmanId() == null ? other.getSalesmanId() == null : this.getSalesmanId().equals(other.getSalesmanId())) |
||||
&& (this.getSalesmanName() == null ? other.getSalesmanName() == null : this.getSalesmanName().equals(other.getSalesmanName())) |
||||
&& (this.getMerId() == null ? other.getMerId() == null : this.getMerId().equals(other.getMerId())) |
||||
&& (this.getMerName() == null ? other.getMerName() == null : this.getMerName().equals(other.getMerName())) |
||||
&& (this.getStoreId() == null ? other.getStoreId() == null : this.getStoreId().equals(other.getStoreId())) |
||||
&& (this.getStoreName() == null ? other.getStoreName() == null : this.getStoreName().equals(other.getStoreName())) |
||||
&& (this.getExt1() == null ? other.getExt1() == null : this.getExt1().equals(other.getExt1())) |
||||
&& (this.getExt2() == null ? other.getExt2() == null : this.getExt2().equals(other.getExt2())) |
||||
&& (this.getExt3() == null ? other.getExt3() == null : this.getExt3().equals(other.getExt3())); |
||||
} |
||||
|
||||
@Override |
||||
public int hashCode() { |
||||
final int prime = 31; |
||||
int result = 1; |
||||
result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); |
||||
result = prime * result + ((getRefundOrderNo() == null) ? 0 : getRefundOrderNo().hashCode()); |
||||
result = prime * result + ((getOrderId() == null) ? 0 : getOrderId().hashCode()); |
||||
result = prime * result + ((getOrderNo() == null) ? 0 : getOrderNo().hashCode()); |
||||
result = prime * result + ((getOrderType() == null) ? 0 : getOrderType().hashCode()); |
||||
result = prime * result + ((getOrderAssignId() == null) ? 0 : getOrderAssignId().hashCode()); |
||||
result = prime * result + ((getDeviceId() == null) ? 0 : getDeviceId().hashCode()); |
||||
result = prime * result + ((getDeivceNo() == null) ? 0 : getDeivceNo().hashCode()); |
||||
result = prime * result + ((getRefund |
||||
|
||||
Price() == null) ? 0 : getRefund |
||||
|
||||
Price().hashCode()); |
||||
result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); |
||||
result = prime * result + ((getRefundTime() == null) ? 0 : getRefundTime().hashCode()); |
||||
result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode()); |
||||
result = prime * result + ((getCompanyId() == null) ? 0 : getCompanyId().hashCode()); |
||||
result = prime * result + ((getCompanyName() == null) ? 0 : getCompanyName().hashCode()); |
||||
result = prime * result + ((getAgentId() == null) ? 0 : getAgentId().hashCode()); |
||||
result = prime * result + ((getAgentName() == null) ? 0 : getAgentName().hashCode()); |
||||
result = prime * result + ((getSalesmanId() == null) ? 0 : getSalesmanId().hashCode()); |
||||
result = prime * result + ((getSalesmanName() == null) ? 0 : getSalesmanName().hashCode()); |
||||
result = prime * result + ((getMerId() == null) ? 0 : getMerId().hashCode()); |
||||
result = prime * result + ((getMerName() == null) ? 0 : getMerName().hashCode()); |
||||
result = prime * result + ((getStoreId() == null) ? 0 : getStoreId().hashCode()); |
||||
result = prime * result + ((getStoreName() == null) ? 0 : getStoreName().hashCode()); |
||||
result = prime * result + ((getExt1() == null) ? 0 : getExt1().hashCode()); |
||||
result = prime * result + ((getExt2() == null) ? 0 : getExt2().hashCode()); |
||||
result = prime * result + ((getExt3() == null) ? 0 : getExt3().hashCode()); |
||||
return result; |
||||
} |
||||
|
||||
@Override |
||||
public String toString() { |
||||
StringBuilder sb = new StringBuilder(); |
||||
sb.append(getClass().getSimpleName()); |
||||
sb.append(" ["); |
||||
sb.append("Hash = ").append(hashCode()); |
||||
sb.append(", id=").append(id); |
||||
sb.append(", refundOrderNo=").append(refundOrderNo); |
||||
sb.append(", orderId=").append(orderId); |
||||
sb.append(", orderNo=").append(orderNo); |
||||
sb.append(", orderType=").append(orderType); |
||||
sb.append(", orderAssignId=").append(orderAssignId); |
||||
sb.append(", deviceId=").append(deviceId); |
||||
sb.append(", deivceNo=").append(deivceNo); |
||||
sb.append(", refund |
||||
|
||||
Price=").append(refund |
||||
|
||||
Price); |
||||
sb.append(", createTime=").append(createTime); |
||||
sb.append(", refundTime=").append(refundTime); |
||||
sb.append(", status=").append(status); |
||||
sb.append(", companyId=").append(companyId); |
||||
sb.append(", companyName=").append(companyName); |
||||
sb.append(", agentId=").append(agentId); |
||||
sb.append(", agentName=").append(agentName); |
||||
sb.append(", salesmanId=").append(salesmanId); |
||||
sb.append(", salesmanName=").append(salesmanName); |
||||
sb.append(", merId=").append(merId); |
||||
sb.append(", merName=").append(merName); |
||||
sb.append(", storeId=").append(storeId); |
||||
sb.append(", storeName=").append(storeName); |
||||
sb.append(", ext1=").append(ext1); |
||||
sb.append(", ext2=").append(ext2); |
||||
sb.append(", ext3=").append(ext3); |
||||
sb.append(", serialVersionUID=").append(serialVersionUID); |
||||
sb.append("]"); |
||||
return sb.toString(); |
||||
} |
||||
} |
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue