@@ -10,6 +10,7 @@ import lombok.EqualsAndHashCode; | |||||
import lombok.ToString; | import lombok.ToString; | ||||
import java.util.Date; | import java.util.Date; | ||||
import java.util.List; | |||||
/** | /** | ||||
* 接入商实体 | * 接入商实体 | ||||
@@ -19,6 +20,8 @@ import java.util.Date; | |||||
*/ | */ | ||||
@TableName(value = "service_info") | @TableName(value = "service_info") | ||||
@Data | @Data | ||||
@ToString(callSuper = true) | |||||
@EqualsAndHashCode(callSuper = true) | |||||
public class ServiceInfo extends BaseEntity{ | public class ServiceInfo extends BaseEntity{ | ||||
private Long id; | private Long id; | ||||
@@ -13,7 +13,7 @@ | |||||
<result column="status" jdbcType="INTEGER" property="status"/> | <result column="status" jdbcType="INTEGER" property="status"/> | ||||
<result column="del_flag" jdbcType="INTEGER" property="delFlag"/> | <result column="del_flag" jdbcType="INTEGER" property="delFlag"/> | ||||
<result column="mall_user_info" jdbcType="BIGINT" property="mallUserInfo"/> | <result column="mall_user_info" jdbcType="BIGINT" property="mallUserInfo"/> | ||||
<result column="remaining_times" jdbcType="INTEGER" property="remaining_times"/> | |||||
<result column="remaining_times" jdbcType="INTEGER" property="remainingTimes"/> | |||||
</resultMap> | </resultMap> | ||||