| @@ -1,19 +1,24 @@ | |||||
| package com.simple.controller; | package com.simple.controller; | ||||
| import io.swagger.annotations.Api; | |||||
| import org.apache.log4j.Logger; | import org.apache.log4j.Logger; | ||||
| import org.springframework.beans.factory.annotation.Autowired; | import org.springframework.beans.factory.annotation.Autowired; | ||||
| import org.springframework.util.Assert; | |||||
| import org.springframework.web.bind.annotation.*; | |||||
| import org.springframework.web.bind.annotation.GetMapping; | |||||
| import org.springframework.web.bind.annotation.ModelAttribute; | |||||
| import org.springframework.web.bind.annotation.PostMapping; | |||||
| import org.springframework.web.bind.annotation.RequestBody; | |||||
| import org.springframework.web.bind.annotation.RequestMapping; | |||||
| import org.springframework.web.bind.annotation.RestController; | |||||
| import com.github.pagehelper.PageInfo; | import com.github.pagehelper.PageInfo; | ||||
| import com.simple.common.Result; | import com.simple.common.Result; | ||||
| import com.simple.common.ResultData; | import com.simple.common.ResultData; | ||||
| import com.simple.domain.po.WxAppinfo; | import com.simple.domain.po.WxAppinfo; | ||||
| import com.simple.service.WxAppinfoService; | import com.simple.service.WxAppinfoService; | ||||
| import io.swagger.annotations.Api; | |||||
| import io.swagger.annotations.ApiImplicitParam; | import io.swagger.annotations.ApiImplicitParam; | ||||
| import io.swagger.annotations.ApiImplicitParams; | import io.swagger.annotations.ApiImplicitParams; | ||||
| import io.swagger.annotations.ApiOperation; | |||||
| @RestController | @RestController | ||||
| @RequestMapping("wxAppinfo") | @RequestMapping("wxAppinfo") | ||||
| @@ -24,7 +29,7 @@ public class WxAppinfoController extends BaseController | |||||
| private WxAppinfoService wxAppinfoService; | private WxAppinfoService wxAppinfoService; | ||||
| private Logger logger = Logger.getLogger(WxAppinfoController.class); | private Logger logger = Logger.getLogger(WxAppinfoController.class); | ||||
| @ApiOperation("") | |||||
| @GetMapping("list") | @GetMapping("list") | ||||
| @ApiImplicitParams({ | @ApiImplicitParams({ | ||||
| @ApiImplicitParam(name="pageNum",value="页数",dataType="int", paramType = "query",required=true), | @ApiImplicitParam(name="pageNum",value="页数",dataType="int", paramType = "query",required=true), | ||||
| @@ -46,26 +46,26 @@ public class WxBUserMerchant implements Serializable { | |||||
| private String tenantId; | private String tenantId; | ||||
| /*B端用户id**/ | /*B端用户id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="B端用户id",name="bUserId") | @io.swagger.annotations.ApiModelProperty(value="B端用户id",name="bUserId") | ||||
| private Integer bUserId; | |||||
| private Long bUserId; | |||||
| /*商户id**/ | /*商户id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="商户id",name="merchantId") | @io.swagger.annotations.ApiModelProperty(value="商户id",name="merchantId") | ||||
| private Integer merchantId; | |||||
| private Long merchantId; | |||||
| public String getTenantId() { | public String getTenantId() { | ||||
| return tenantId; | return tenantId; | ||||
| } | } | ||||
| public void setTenantId(String _tenantId) { | public void setTenantId(String _tenantId) { | ||||
| tenantId = _tenantId; | tenantId = _tenantId; | ||||
| } | } | ||||
| public Integer getBUserId() { | |||||
| public Long getBUserId() { | |||||
| return bUserId; | return bUserId; | ||||
| } | } | ||||
| public void setBUserId(Integer _bUserId) { | |||||
| public void setBUserId(Long _bUserId) { | |||||
| bUserId = _bUserId; | bUserId = _bUserId; | ||||
| } | } | ||||
| public Integer getMerchantId() { | |||||
| public Long getMerchantId() { | |||||
| return merchantId; | return merchantId; | ||||
| } | } | ||||
| public void setMerchantId(Integer _merchantId) { | |||||
| public void setMerchantId(Long _merchantId) { | |||||
| merchantId = _merchantId; | merchantId = _merchantId; | ||||
| } | } | ||||
| @@ -46,7 +46,7 @@ public class WxCUserCars implements Serializable { | |||||
| private String tenantId; | private String tenantId; | ||||
| /*c端用户id**/ | /*c端用户id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="c端用户id",name="cUserId") | @io.swagger.annotations.ApiModelProperty(value="c端用户id",name="cUserId") | ||||
| private Integer cUserId; | |||||
| private Long cUserId; | |||||
| /*车牌号**/ | /*车牌号**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="车牌号",name="carNumber") | @io.swagger.annotations.ApiModelProperty(value="车牌号",name="carNumber") | ||||
| private String carNumber; | private String carNumber; | ||||
| @@ -56,10 +56,10 @@ public class WxCUserCars implements Serializable { | |||||
| public void setTenantId(String _tenantId) { | public void setTenantId(String _tenantId) { | ||||
| tenantId = _tenantId; | tenantId = _tenantId; | ||||
| } | } | ||||
| public Integer getCUserId() { | |||||
| public Long getCUserId() { | |||||
| return cUserId; | return cUserId; | ||||
| } | } | ||||
| public void setCUserId(Integer _cUserId) { | |||||
| public void setCUserId(Long _cUserId) { | |||||
| cUserId = _cUserId; | cUserId = _cUserId; | ||||
| } | } | ||||
| public String getCarNumber() { | public String getCarNumber() { | ||||
| @@ -46,7 +46,7 @@ public class WxCUserCloud implements Serializable { | |||||
| private String tenantId; | private String tenantId; | ||||
| /*c端用户id**/ | /*c端用户id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="c端用户id",name="cUserId") | @io.swagger.annotations.ApiModelProperty(value="c端用户id",name="cUserId") | ||||
| private Integer cUserId; | |||||
| private Long cUserId; | |||||
| /*大数据相关信息**/ | /*大数据相关信息**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="大数据相关信息",name="cloudData") | @io.swagger.annotations.ApiModelProperty(value="大数据相关信息",name="cloudData") | ||||
| private String cloudData; | private String cloudData; | ||||
| @@ -56,10 +56,10 @@ public class WxCUserCloud implements Serializable { | |||||
| public void setTenantId(String _tenantId) { | public void setTenantId(String _tenantId) { | ||||
| tenantId = _tenantId; | tenantId = _tenantId; | ||||
| } | } | ||||
| public Integer getCUserId() { | |||||
| public Long getCUserId() { | |||||
| return cUserId; | return cUserId; | ||||
| } | } | ||||
| public void setCUserId(Integer _cUserId) { | |||||
| public void setCUserId(Long _cUserId) { | |||||
| cUserId = _cUserId; | cUserId = _cUserId; | ||||
| } | } | ||||
| public String getCloudData() { | public String getCloudData() { | ||||
| @@ -46,7 +46,7 @@ public class WxCUserEtcpToken implements Serializable { | |||||
| private String tenantId; | private String tenantId; | ||||
| /*c端用户ID**/ | /*c端用户ID**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="c端用户ID",name="cUserId") | @io.swagger.annotations.ApiModelProperty(value="c端用户ID",name="cUserId") | ||||
| private Integer cUserId; | |||||
| private Long cUserId; | |||||
| /*etcp token**/ | /*etcp token**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="etcp token",name="etcpToken") | @io.swagger.annotations.ApiModelProperty(value="etcp token",name="etcpToken") | ||||
| private String etcpToken; | private String etcpToken; | ||||
| @@ -62,10 +62,10 @@ public class WxCUserEtcpToken implements Serializable { | |||||
| public void setTenantId(String _tenantId) { | public void setTenantId(String _tenantId) { | ||||
| tenantId = _tenantId; | tenantId = _tenantId; | ||||
| } | } | ||||
| public Integer getCUserId() { | |||||
| public Long getCUserId() { | |||||
| return cUserId; | return cUserId; | ||||
| } | } | ||||
| public void setCUserId(Integer _cUserId) { | |||||
| public void setCUserId(Long _cUserId) { | |||||
| cUserId = _cUserId; | cUserId = _cUserId; | ||||
| } | } | ||||
| public String getEtcpToken() { | public String getEtcpToken() { | ||||
| @@ -46,7 +46,7 @@ public class WxCUserTags implements Serializable { | |||||
| private String tenantId; | private String tenantId; | ||||
| /*c端用户id**/ | /*c端用户id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="c端用户id",name="userId") | @io.swagger.annotations.ApiModelProperty(value="c端用户id",name="userId") | ||||
| private Integer userId; | |||||
| private Long userId; | |||||
| /***/ | /***/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="",name="tags") | @io.swagger.annotations.ApiModelProperty(value="",name="tags") | ||||
| private String tags; | private String tags; | ||||
| @@ -56,10 +56,10 @@ public class WxCUserTags implements Serializable { | |||||
| public void setTenantId(String _tenantId) { | public void setTenantId(String _tenantId) { | ||||
| tenantId = _tenantId; | tenantId = _tenantId; | ||||
| } | } | ||||
| public Integer getUserId() { | |||||
| public Long getUserId() { | |||||
| return userId; | return userId; | ||||
| } | } | ||||
| public void setUserId(Integer _userId) { | |||||
| public void setUserId(Long _userId) { | |||||
| userId = _userId; | userId = _userId; | ||||
| } | } | ||||
| public String getTags() { | public String getTags() { | ||||
| @@ -46,10 +46,10 @@ public class WxCoupon implements Serializable { | |||||
| private String tenantId; | private String tenantId; | ||||
| /*卡券活动id**/ | /*卡券活动id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="卡券活动id",name="activityId") | @io.swagger.annotations.ApiModelProperty(value="卡券活动id",name="activityId") | ||||
| private Integer activityId; | |||||
| private Long activityId; | |||||
| /*商户id**/ | /*商户id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="商户id",name="merchantId") | @io.swagger.annotations.ApiModelProperty(value="商户id",name="merchantId") | ||||
| private Integer merchantId; | |||||
| private Long merchantId; | |||||
| /*券类型**/ | /*券类型**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="券类型",name="type") | @io.swagger.annotations.ApiModelProperty(value="券类型",name="type") | ||||
| private Integer type; | private Integer type; | ||||
| @@ -92,16 +92,16 @@ public class WxCoupon implements Serializable { | |||||
| public void setTenantId(String _tenantId) { | public void setTenantId(String _tenantId) { | ||||
| tenantId = _tenantId; | tenantId = _tenantId; | ||||
| } | } | ||||
| public Integer getActivityId() { | |||||
| public Long getActivityId() { | |||||
| return activityId; | return activityId; | ||||
| } | } | ||||
| public void setActivityId(Integer _activityId) { | |||||
| public void setActivityId(Long _activityId) { | |||||
| activityId = _activityId; | activityId = _activityId; | ||||
| } | } | ||||
| public Integer getMerchantId() { | |||||
| public Long getMerchantId() { | |||||
| return merchantId; | return merchantId; | ||||
| } | } | ||||
| public void setMerchantId(Integer _merchantId) { | |||||
| public void setMerchantId(Long _merchantId) { | |||||
| merchantId = _merchantId; | merchantId = _merchantId; | ||||
| } | } | ||||
| public Integer getType() { | public Integer getType() { | ||||
| @@ -46,10 +46,10 @@ public class WxCouponActionLog implements Serializable { | |||||
| private String tenantId; | private String tenantId; | ||||
| /*coupon id**/ | /*coupon id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="coupon id",name="couponId") | @io.swagger.annotations.ApiModelProperty(value="coupon id",name="couponId") | ||||
| private Integer couponId; | |||||
| private Long couponId; | |||||
| /*用户id**/ | /*用户id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="用户id",name="userId") | @io.swagger.annotations.ApiModelProperty(value="用户id",name="userId") | ||||
| private Integer userId; | |||||
| private Long userId; | |||||
| /*优惠券操作(领取、支付,使用,核销等)**/ | /*优惠券操作(领取、支付,使用,核销等)**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="优惠券操作(领取、支付,使用,核销等)",name="action") | @io.swagger.annotations.ApiModelProperty(value="优惠券操作(领取、支付,使用,核销等)",name="action") | ||||
| private String action; | private String action; | ||||
| @@ -62,16 +62,16 @@ public class WxCouponActionLog implements Serializable { | |||||
| public void setTenantId(String _tenantId) { | public void setTenantId(String _tenantId) { | ||||
| tenantId = _tenantId; | tenantId = _tenantId; | ||||
| } | } | ||||
| public Integer getCouponId() { | |||||
| public Long getCouponId() { | |||||
| return couponId; | return couponId; | ||||
| } | } | ||||
| public void setCouponId(Integer _couponId) { | |||||
| public void setCouponId(Long _couponId) { | |||||
| couponId = _couponId; | couponId = _couponId; | ||||
| } | } | ||||
| public Integer getUserId() { | |||||
| public Long getUserId() { | |||||
| return userId; | return userId; | ||||
| } | } | ||||
| public void setUserId(Integer _userId) { | |||||
| public void setUserId(Long _userId) { | |||||
| userId = _userId; | userId = _userId; | ||||
| } | } | ||||
| public String getAction() { | public String getAction() { | ||||
| @@ -46,7 +46,7 @@ public class WxCouponActivity implements Serializable { | |||||
| private String tenantId; | private String tenantId; | ||||
| /*商户id**/ | /*商户id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="商户id",name="merchantId") | @io.swagger.annotations.ApiModelProperty(value="商户id",name="merchantId") | ||||
| private Integer merchantId; | |||||
| private Long merchantId; | |||||
| /*券类型(1.满减券,2.代金券,3.团购券,4.礼品券,5.停车券)**/ | /*券类型(1.满减券,2.代金券,3.团购券,4.礼品券,5.停车券)**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="券类型(1.满减券,2.代金券,3.团购券,4.礼品券,5.停车券)",name="type") | @io.swagger.annotations.ApiModelProperty(value="券类型(1.满减券,2.代金券,3.团购券,4.礼品券,5.停车券)",name="type") | ||||
| private Integer type; | private Integer type; | ||||
| @@ -113,10 +113,10 @@ public class WxCouponActivity implements Serializable { | |||||
| public void setTenantId(String _tenantId) { | public void setTenantId(String _tenantId) { | ||||
| tenantId = _tenantId; | tenantId = _tenantId; | ||||
| } | } | ||||
| public Integer getMerchantId() { | |||||
| public Long getMerchantId() { | |||||
| return merchantId; | return merchantId; | ||||
| } | } | ||||
| public void setMerchantId(Integer _merchantId) { | |||||
| public void setMerchantId(Long _merchantId) { | |||||
| merchantId = _merchantId; | merchantId = _merchantId; | ||||
| } | } | ||||
| public Integer getType() { | public Integer getType() { | ||||
| @@ -46,13 +46,13 @@ public class WxCouponRecord implements Serializable { | |||||
| private String tenantId; | private String tenantId; | ||||
| /*coupon id**/ | /*coupon id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="coupon id",name="couponId") | @io.swagger.annotations.ApiModelProperty(value="coupon id",name="couponId") | ||||
| private Integer couponId; | |||||
| private Long couponId; | |||||
| /*订单id**/ | /*订单id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="订单id",name="orderId") | @io.swagger.annotations.ApiModelProperty(value="订单id",name="orderId") | ||||
| private Integer orderId; | |||||
| private Long orderId; | |||||
| /*c端用户id**/ | /*c端用户id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="c端用户id",name="cUserId") | @io.swagger.annotations.ApiModelProperty(value="c端用户id",name="cUserId") | ||||
| private Integer cUserId; | |||||
| private Long cUserId; | |||||
| /*购买日期/领取日期**/ | /*购买日期/领取日期**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="购买日期/领取日期",name="buyDate") | @io.swagger.annotations.ApiModelProperty(value="购买日期/领取日期",name="buyDate") | ||||
| private Date buyDate; | private Date buyDate; | ||||
| @@ -64,7 +64,7 @@ public class WxCouponRecord implements Serializable { | |||||
| private Integer cStatus; | private Integer cStatus; | ||||
| /*b端用户id**/ | /*b端用户id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="b端用户id",name="bUserId") | @io.swagger.annotations.ApiModelProperty(value="b端用户id",name="bUserId") | ||||
| private Integer bUserId; | |||||
| private Long bUserId; | |||||
| /*核销日期**/ | /*核销日期**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="核销日期",name="verificationDate") | @io.swagger.annotations.ApiModelProperty(value="核销日期",name="verificationDate") | ||||
| private Date verificationDate; | private Date verificationDate; | ||||
| @@ -77,22 +77,22 @@ public class WxCouponRecord implements Serializable { | |||||
| public void setTenantId(String _tenantId) { | public void setTenantId(String _tenantId) { | ||||
| tenantId = _tenantId; | tenantId = _tenantId; | ||||
| } | } | ||||
| public Integer getCouponId() { | |||||
| public Long getCouponId() { | |||||
| return couponId; | return couponId; | ||||
| } | } | ||||
| public void setCouponId(Integer _couponId) { | |||||
| public void setCouponId(Long _couponId) { | |||||
| couponId = _couponId; | couponId = _couponId; | ||||
| } | } | ||||
| public Integer getOrderId() { | |||||
| public Long getOrderId() { | |||||
| return orderId; | return orderId; | ||||
| } | } | ||||
| public void setOrderId(Integer _orderId) { | |||||
| public void setOrderId(Long _orderId) { | |||||
| orderId = _orderId; | orderId = _orderId; | ||||
| } | } | ||||
| public Integer getCUserId() { | |||||
| public Long getCUserId() { | |||||
| return cUserId; | return cUserId; | ||||
| } | } | ||||
| public void setCUserId(Integer _cUserId) { | |||||
| public void setCUserId(Long _cUserId) { | |||||
| cUserId = _cUserId; | cUserId = _cUserId; | ||||
| } | } | ||||
| public Date getBuyDate() { | public Date getBuyDate() { | ||||
| @@ -113,10 +113,10 @@ public class WxCouponRecord implements Serializable { | |||||
| public void setCStatus(Integer _cStatus) { | public void setCStatus(Integer _cStatus) { | ||||
| cStatus = _cStatus; | cStatus = _cStatus; | ||||
| } | } | ||||
| public Integer getBUserId() { | |||||
| public Long getBUserId() { | |||||
| return bUserId; | return bUserId; | ||||
| } | } | ||||
| public void setBUserId(Integer _bUserId) { | |||||
| public void setBUserId(Long _bUserId) { | |||||
| bUserId = _bUserId; | bUserId = _bUserId; | ||||
| } | } | ||||
| public Date getVerificationDate() { | public Date getVerificationDate() { | ||||
| @@ -46,7 +46,7 @@ public class WxEtcpCouponRecord implements Serializable { | |||||
| private String tenantId; | private String tenantId; | ||||
| /*coupon id**/ | /*coupon id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="coupon id",name="couponId") | @io.swagger.annotations.ApiModelProperty(value="coupon id",name="couponId") | ||||
| private Integer couponId; | |||||
| private Long couponId; | |||||
| /*车牌号**/ | /*车牌号**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="车牌号",name="carNumber") | @io.swagger.annotations.ApiModelProperty(value="车牌号",name="carNumber") | ||||
| private String carNumber; | private String carNumber; | ||||
| @@ -77,10 +77,10 @@ public class WxEtcpCouponRecord implements Serializable { | |||||
| public void setTenantId(String _tenantId) { | public void setTenantId(String _tenantId) { | ||||
| tenantId = _tenantId; | tenantId = _tenantId; | ||||
| } | } | ||||
| public Integer getCouponId() { | |||||
| public Long getCouponId() { | |||||
| return couponId; | return couponId; | ||||
| } | } | ||||
| public void setCouponId(Integer _couponId) { | |||||
| public void setCouponId(Long _couponId) { | |||||
| couponId = _couponId; | couponId = _couponId; | ||||
| } | } | ||||
| public String getCarNumber() { | public String getCarNumber() { | ||||
| @@ -46,7 +46,7 @@ public class WxFlashSale implements Serializable { | |||||
| private String tenantId; | private String tenantId; | ||||
| /*优惠券活动ID**/ | /*优惠券活动ID**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="优惠券活动ID",name="activityId") | @io.swagger.annotations.ApiModelProperty(value="优惠券活动ID",name="activityId") | ||||
| private Integer activityId; | |||||
| private Long activityId; | |||||
| /*创建时间**/ | /*创建时间**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="创建时间",name="createtime") | @io.swagger.annotations.ApiModelProperty(value="创建时间",name="createtime") | ||||
| private Date createtime; | private Date createtime; | ||||
| @@ -62,10 +62,10 @@ public class WxFlashSale implements Serializable { | |||||
| public void setTenantId(String _tenantId) { | public void setTenantId(String _tenantId) { | ||||
| tenantId = _tenantId; | tenantId = _tenantId; | ||||
| } | } | ||||
| public Integer getActivityId() { | |||||
| public Long getActivityId() { | |||||
| return activityId; | return activityId; | ||||
| } | } | ||||
| public void setActivityId(Integer _activityId) { | |||||
| public void setActivityId(Long _activityId) { | |||||
| activityId = _activityId; | activityId = _activityId; | ||||
| } | } | ||||
| public Date getCreatetime() { | public Date getCreatetime() { | ||||
| @@ -46,7 +46,7 @@ public class WxMallBuilding implements Serializable { | |||||
| private String tenantId; | private String tenantId; | ||||
| /*商场id**/ | /*商场id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="商场id",name="mallId") | @io.swagger.annotations.ApiModelProperty(value="商场id",name="mallId") | ||||
| private Integer mallId; | |||||
| private Long mallId; | |||||
| /*楼座名**/ | /*楼座名**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="楼座名",name="name") | @io.swagger.annotations.ApiModelProperty(value="楼座名",name="name") | ||||
| private String name; | private String name; | ||||
| @@ -59,10 +59,10 @@ public class WxMallBuilding implements Serializable { | |||||
| public void setTenantId(String _tenantId) { | public void setTenantId(String _tenantId) { | ||||
| tenantId = _tenantId; | tenantId = _tenantId; | ||||
| } | } | ||||
| public Integer getMallId() { | |||||
| public Long getMallId() { | |||||
| return mallId; | return mallId; | ||||
| } | } | ||||
| public void setMallId(Integer _mallId) { | |||||
| public void setMallId(Long _mallId) { | |||||
| mallId = _mallId; | mallId = _mallId; | ||||
| } | } | ||||
| public String getName() { | public String getName() { | ||||
| @@ -46,10 +46,10 @@ public class WxMallFloor implements Serializable { | |||||
| private String tenantId; | private String tenantId; | ||||
| /*商场id**/ | /*商场id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="商场id",name="mallId") | @io.swagger.annotations.ApiModelProperty(value="商场id",name="mallId") | ||||
| private Integer mallId; | |||||
| private Long mallId; | |||||
| /*楼座id**/ | /*楼座id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="楼座id",name="buildingId") | @io.swagger.annotations.ApiModelProperty(value="楼座id",name="buildingId") | ||||
| private Integer buildingId; | |||||
| private Long buildingId; | |||||
| /*楼层名**/ | /*楼层名**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="楼层名",name="floorName") | @io.swagger.annotations.ApiModelProperty(value="楼层名",name="floorName") | ||||
| private String floorName; | private String floorName; | ||||
| @@ -59,16 +59,16 @@ public class WxMallFloor implements Serializable { | |||||
| public void setTenantId(String _tenantId) { | public void setTenantId(String _tenantId) { | ||||
| tenantId = _tenantId; | tenantId = _tenantId; | ||||
| } | } | ||||
| public Integer getMallId() { | |||||
| public Long getMallId() { | |||||
| return mallId; | return mallId; | ||||
| } | } | ||||
| public void setMallId(Integer _mallId) { | |||||
| public void setMallId(Long _mallId) { | |||||
| mallId = _mallId; | mallId = _mallId; | ||||
| } | } | ||||
| public Integer getBuildingId() { | |||||
| public Long getBuildingId() { | |||||
| return buildingId; | return buildingId; | ||||
| } | } | ||||
| public void setBuildingId(Integer _buildingId) { | |||||
| public void setBuildingId(Long _buildingId) { | |||||
| buildingId = _buildingId; | buildingId = _buildingId; | ||||
| } | } | ||||
| public String getFloorName() { | public String getFloorName() { | ||||
| @@ -46,26 +46,26 @@ public class WxMerchantShop implements Serializable { | |||||
| private String tenantId; | private String tenantId; | ||||
| /*商户ID**/ | /*商户ID**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="商户ID",name="merchantId") | @io.swagger.annotations.ApiModelProperty(value="商户ID",name="merchantId") | ||||
| private Integer merchantId; | |||||
| private Long merchantId; | |||||
| /*商铺ID**/ | /*商铺ID**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="商铺ID",name="shopId") | @io.swagger.annotations.ApiModelProperty(value="商铺ID",name="shopId") | ||||
| private Integer shopId; | |||||
| private Long shopId; | |||||
| public String getTenantId() { | public String getTenantId() { | ||||
| return tenantId; | return tenantId; | ||||
| } | } | ||||
| public void setTenantId(String _tenantId) { | public void setTenantId(String _tenantId) { | ||||
| tenantId = _tenantId; | tenantId = _tenantId; | ||||
| } | } | ||||
| public Integer getMerchantId() { | |||||
| public Long getMerchantId() { | |||||
| return merchantId; | return merchantId; | ||||
| } | } | ||||
| public void setMerchantId(Integer _merchantId) { | |||||
| public void setMerchantId(Long _merchantId) { | |||||
| merchantId = _merchantId; | merchantId = _merchantId; | ||||
| } | } | ||||
| public Integer getShopId() { | |||||
| public Long getShopId() { | |||||
| return shopId; | return shopId; | ||||
| } | } | ||||
| public void setShopId(Integer _shopId) { | |||||
| public void setShopId(Long _shopId) { | |||||
| shopId = _shopId; | shopId = _shopId; | ||||
| } | } | ||||
| @@ -46,7 +46,7 @@ public class WxMerchantTradeDays implements Serializable { | |||||
| private String tenantId; | private String tenantId; | ||||
| /*商户id**/ | /*商户id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="商户id",name="merchantId") | @io.swagger.annotations.ApiModelProperty(value="商户id",name="merchantId") | ||||
| private Integer merchantId; | |||||
| private Long merchantId; | |||||
| /*交易额**/ | /*交易额**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="交易额",name="tradeAmt") | @io.swagger.annotations.ApiModelProperty(value="交易额",name="tradeAmt") | ||||
| private BigDecimal tradeAmt; | private BigDecimal tradeAmt; | ||||
| @@ -59,10 +59,10 @@ public class WxMerchantTradeDays implements Serializable { | |||||
| public void setTenantId(String _tenantId) { | public void setTenantId(String _tenantId) { | ||||
| tenantId = _tenantId; | tenantId = _tenantId; | ||||
| } | } | ||||
| public Integer getMerchantId() { | |||||
| public Long getMerchantId() { | |||||
| return merchantId; | return merchantId; | ||||
| } | } | ||||
| public void setMerchantId(Integer _merchantId) { | |||||
| public void setMerchantId(Long _merchantId) { | |||||
| merchantId = _merchantId; | merchantId = _merchantId; | ||||
| } | } | ||||
| public BigDecimal getTradeAmt() { | public BigDecimal getTradeAmt() { | ||||
| @@ -46,7 +46,7 @@ public class WxMsg implements Serializable { | |||||
| private String tenantId; | private String tenantId; | ||||
| /*模板id**/ | /*模板id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="模板id",name="modelId") | @io.swagger.annotations.ApiModelProperty(value="模板id",name="modelId") | ||||
| private Integer modelId; | |||||
| private Long modelId; | |||||
| /*内容**/ | /*内容**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="内容",name="msg") | @io.swagger.annotations.ApiModelProperty(value="内容",name="msg") | ||||
| private String msg; | private String msg; | ||||
| @@ -77,10 +77,10 @@ public class WxMsg implements Serializable { | |||||
| public void setTenantId(String _tenantId) { | public void setTenantId(String _tenantId) { | ||||
| tenantId = _tenantId; | tenantId = _tenantId; | ||||
| } | } | ||||
| public Integer getModelId() { | |||||
| public Long getModelId() { | |||||
| return modelId; | return modelId; | ||||
| } | } | ||||
| public void setModelId(Integer _modelId) { | |||||
| public void setModelId(Long _modelId) { | |||||
| modelId = _modelId; | modelId = _modelId; | ||||
| } | } | ||||
| public String getMsg() { | public String getMsg() { | ||||
| @@ -55,13 +55,13 @@ public class WxMsgConfig implements Serializable { | |||||
| private String bid; | private String bid; | ||||
| /*充值条数**/ | /*充值条数**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="充值条数",name="recharge") | @io.swagger.annotations.ApiModelProperty(value="充值条数",name="recharge") | ||||
| private Integer recharge; | |||||
| private Long recharge; | |||||
| /*剩余条数**/ | /*剩余条数**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="剩余条数",name="remains") | @io.swagger.annotations.ApiModelProperty(value="剩余条数",name="remains") | ||||
| private Integer remains; | |||||
| private Long remains; | |||||
| /*短信总数**/ | /*短信总数**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="短信总数",name="total") | @io.swagger.annotations.ApiModelProperty(value="短信总数",name="total") | ||||
| private Integer total; | |||||
| private Long total; | |||||
| /***/ | /***/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="",name="account") | @io.swagger.annotations.ApiModelProperty(value="",name="account") | ||||
| private String account; | private String account; | ||||
| @@ -70,7 +70,7 @@ public class WxMsgConfig implements Serializable { | |||||
| private Integer reminderstatus; | private Integer reminderstatus; | ||||
| /***/ | /***/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="",name="reminder") | @io.swagger.annotations.ApiModelProperty(value="",name="reminder") | ||||
| private Integer reminder; | |||||
| private Long reminder; | |||||
| /***/ | /***/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="",name="phone") | @io.swagger.annotations.ApiModelProperty(value="",name="phone") | ||||
| private String phone; | private String phone; | ||||
| @@ -98,22 +98,22 @@ public class WxMsgConfig implements Serializable { | |||||
| public void setBid(String _bid) { | public void setBid(String _bid) { | ||||
| bid = _bid; | bid = _bid; | ||||
| } | } | ||||
| public Integer getRecharge() { | |||||
| public Long getRecharge() { | |||||
| return recharge; | return recharge; | ||||
| } | } | ||||
| public void setRecharge(Integer _recharge) { | |||||
| public void setRecharge(Long _recharge) { | |||||
| recharge = _recharge; | recharge = _recharge; | ||||
| } | } | ||||
| public Integer getRemains() { | |||||
| public Long getRemains() { | |||||
| return remains; | return remains; | ||||
| } | } | ||||
| public void setRemains(Integer _remains) { | |||||
| public void setRemains(Long _remains) { | |||||
| remains = _remains; | remains = _remains; | ||||
| } | } | ||||
| public Integer getTotal() { | |||||
| public Long getTotal() { | |||||
| return total; | return total; | ||||
| } | } | ||||
| public void setTotal(Integer _total) { | |||||
| public void setTotal(Long _total) { | |||||
| total = _total; | total = _total; | ||||
| } | } | ||||
| public String getAccount() { | public String getAccount() { | ||||
| @@ -128,10 +128,10 @@ public class WxMsgConfig implements Serializable { | |||||
| public void setReminderstatus(Integer _reminderstatus) { | public void setReminderstatus(Integer _reminderstatus) { | ||||
| reminderstatus = _reminderstatus; | reminderstatus = _reminderstatus; | ||||
| } | } | ||||
| public Integer getReminder() { | |||||
| public Long getReminder() { | |||||
| return reminder; | return reminder; | ||||
| } | } | ||||
| public void setReminder(Integer _reminder) { | |||||
| public void setReminder(Long _reminder) { | |||||
| reminder = _reminder; | reminder = _reminder; | ||||
| } | } | ||||
| public String getPhone() { | public String getPhone() { | ||||
| @@ -46,10 +46,10 @@ public class WxOrders implements Serializable { | |||||
| private String tenantId; | private String tenantId; | ||||
| /*卡券活动id**/ | /*卡券活动id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="卡券活动id",name="couponId") | @io.swagger.annotations.ApiModelProperty(value="卡券活动id",name="couponId") | ||||
| private Integer couponId; | |||||
| private Long couponId; | |||||
| /*c端用户id**/ | /*c端用户id**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="c端用户id",name="cUserId") | @io.swagger.annotations.ApiModelProperty(value="c端用户id",name="cUserId") | ||||
| private Integer cUserId; | |||||
| private Long cUserId; | |||||
| /*支付金额**/ | /*支付金额**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="支付金额",name="payment") | @io.swagger.annotations.ApiModelProperty(value="支付金额",name="payment") | ||||
| private BigDecimal payment; | private BigDecimal payment; | ||||
| @@ -68,16 +68,16 @@ public class WxOrders implements Serializable { | |||||
| public void setTenantId(String _tenantId) { | public void setTenantId(String _tenantId) { | ||||
| tenantId = _tenantId; | tenantId = _tenantId; | ||||
| } | } | ||||
| public Integer getCouponId() { | |||||
| public Long getCouponId() { | |||||
| return couponId; | return couponId; | ||||
| } | } | ||||
| public void setCouponId(Integer _couponId) { | |||||
| public void setCouponId(Long _couponId) { | |||||
| couponId = _couponId; | couponId = _couponId; | ||||
| } | } | ||||
| public Integer getCUserId() { | |||||
| public Long getCUserId() { | |||||
| return cUserId; | return cUserId; | ||||
| } | } | ||||
| public void setCUserId(Integer _cUserId) { | |||||
| public void setCUserId(Long _cUserId) { | |||||
| cUserId = _cUserId; | cUserId = _cUserId; | ||||
| } | } | ||||
| public BigDecimal getPayment() { | public BigDecimal getPayment() { | ||||
| @@ -46,7 +46,7 @@ public class WxScoreHistory implements Serializable { | |||||
| private String tenantId; | private String tenantId; | ||||
| /*会员ID**/ | /*会员ID**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="会员ID",name="cUserId") | @io.swagger.annotations.ApiModelProperty(value="会员ID",name="cUserId") | ||||
| private Integer cUserId; | |||||
| private Long cUserId; | |||||
| /*创建日期**/ | /*创建日期**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="创建日期",name="createDate") | @io.swagger.annotations.ApiModelProperty(value="创建日期",name="createDate") | ||||
| private Date createDate; | private Date createDate; | ||||
| @@ -55,7 +55,7 @@ public class WxScoreHistory implements Serializable { | |||||
| private Date validDate; | private Date validDate; | ||||
| /*单据号**/ | /*单据号**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="单据号",name="orderId") | @io.swagger.annotations.ApiModelProperty(value="单据号",name="orderId") | ||||
| private Integer orderId; | |||||
| private Long orderId; | |||||
| /*支付方式**/ | /*支付方式**/ | ||||
| @io.swagger.annotations.ApiModelProperty(value="支付方式",name="payType") | @io.swagger.annotations.ApiModelProperty(value="支付方式",name="payType") | ||||
| private Integer payType; | private Integer payType; | ||||
| @@ -71,10 +71,10 @@ public class WxScoreHistory implements Serializable { | |||||
| public void setTenantId(String _tenantId) { | public void setTenantId(String _tenantId) { | ||||
| tenantId = _tenantId; | tenantId = _tenantId; | ||||
| } | } | ||||
| public Integer getCUserId() { | |||||
| public Long getCUserId() { | |||||
| return cUserId; | return cUserId; | ||||
| } | } | ||||
| public void setCUserId(Integer _cUserId) { | |||||
| public void setCUserId(Long _cUserId) { | |||||
| cUserId = _cUserId; | cUserId = _cUserId; | ||||
| } | } | ||||
| public Date getCreateDate() { | public Date getCreateDate() { | ||||
| @@ -89,10 +89,10 @@ public class WxScoreHistory implements Serializable { | |||||
| public void setValidDate(Date _validDate) { | public void setValidDate(Date _validDate) { | ||||
| validDate = _validDate; | validDate = _validDate; | ||||
| } | } | ||||
| public Integer getOrderId() { | |||||
| public Long getOrderId() { | |||||
| return orderId; | return orderId; | ||||
| } | } | ||||
| public void setOrderId(Integer _orderId) { | |||||
| public void setOrderId(Long _orderId) { | |||||
| orderId = _orderId; | orderId = _orderId; | ||||
| } | } | ||||
| public Integer getPayType() { | public Integer getPayType() { | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxAppinfoMapper"> | <mapper namespace="com.simple.mapper.WxAppinfoMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxAppinfo"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxAppinfo"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="appid" jdbcType="VARCHAR" property="appid" /> | <result column="appid" jdbcType="VARCHAR" property="appid" /> | ||||
| <result column="secret" jdbcType="VARCHAR" property="secret" /> | <result column="secret" jdbcType="VARCHAR" property="secret" /> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxBLogMapper"> | <mapper namespace="com.simple.mapper.WxBLogMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxBLog"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxBLog"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="data" jdbcType="VARCHAR" property="data" /> | <result column="data" jdbcType="VARCHAR" property="data" /> | ||||
| <result column="create_date" jdbcType="TIMESTAMP" property="createDate" /> | <result column="create_date" jdbcType="TIMESTAMP" property="createDate" /> | ||||
| @@ -2,10 +2,10 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxBUserMerchantMapper"> | <mapper namespace="com.simple.mapper.WxBUserMerchantMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxBUserMerchant"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxBUserMerchant"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="b_user_id" jdbcType="INTEGER" property="bUserId" /> | |||||
| <result column="merchant_id" jdbcType="INTEGER" property="merchantId" /> | |||||
| <result column="b_user_id" jdbcType="BIGINT" property="bUserId" /> | |||||
| <result column="merchant_id" jdbcType="BIGINT" property="merchantId" /> | |||||
| </resultMap> | </resultMap> | ||||
| <sql id="allColumns"> | <sql id="allColumns"> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxBannersMapper"> | <mapper namespace="com.simple.mapper.WxBannersMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxBanners"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxBanners"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="face_pic_url" jdbcType="VARCHAR" property="facePicUrl" /> | <result column="face_pic_url" jdbcType="VARCHAR" property="facePicUrl" /> | ||||
| <result column="activity_type" jdbcType="INTEGER" property="activityType" /> | <result column="activity_type" jdbcType="INTEGER" property="activityType" /> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxBusinessMapper"> | <mapper namespace="com.simple.mapper.WxBusinessMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxBusiness"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxBusiness"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="title" jdbcType="VARCHAR" property="title" /> | <result column="title" jdbcType="VARCHAR" property="title" /> | ||||
| </resultMap> | </resultMap> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxCLogMapper"> | <mapper namespace="com.simple.mapper.WxCLogMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCLog"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCLog"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="data" jdbcType="VARCHAR" property="data" /> | <result column="data" jdbcType="VARCHAR" property="data" /> | ||||
| <result column="create_date" jdbcType="TIMESTAMP" property="createDate" /> | <result column="create_date" jdbcType="TIMESTAMP" property="createDate" /> | ||||
| @@ -2,9 +2,9 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxCUserCarsMapper"> | <mapper namespace="com.simple.mapper.WxCUserCarsMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCUserCars"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCUserCars"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="c_user_id" jdbcType="INTEGER" property="cUserId" /> | |||||
| <result column="c_user_id" jdbcType="BIGINT" property="cUserId" /> | |||||
| <result column="car_number" jdbcType="VARCHAR" property="carNumber" /> | <result column="car_number" jdbcType="VARCHAR" property="carNumber" /> | ||||
| </resultMap> | </resultMap> | ||||
| @@ -2,9 +2,9 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxCUserCloudMapper"> | <mapper namespace="com.simple.mapper.WxCUserCloudMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCUserCloud"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCUserCloud"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="c_user_id" jdbcType="INTEGER" property="cUserId" /> | |||||
| <result column="c_user_id" jdbcType="BIGINT" property="cUserId" /> | |||||
| <result column="cloud_data" jdbcType="VARCHAR" property="cloudData" /> | <result column="cloud_data" jdbcType="VARCHAR" property="cloudData" /> | ||||
| </resultMap> | </resultMap> | ||||
| @@ -2,9 +2,9 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxCUserEtcpTokenMapper"> | <mapper namespace="com.simple.mapper.WxCUserEtcpTokenMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCUserEtcpToken"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCUserEtcpToken"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="c_user_id" jdbcType="INTEGER" property="cUserId" /> | |||||
| <result column="c_user_id" jdbcType="BIGINT" property="cUserId" /> | |||||
| <result column="etcp_token" jdbcType="VARCHAR" property="etcpToken" /> | <result column="etcp_token" jdbcType="VARCHAR" property="etcpToken" /> | ||||
| <result column="etcp_create_time" jdbcType="TIMESTAMP" property="etcpCreateTime" /> | <result column="etcp_create_time" jdbcType="TIMESTAMP" property="etcpCreateTime" /> | ||||
| <result column="etcp_update_time" jdbcType="TIMESTAMP" property="etcpUpdateTime" /> | <result column="etcp_update_time" jdbcType="TIMESTAMP" property="etcpUpdateTime" /> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxCUserMapper"> | <mapper namespace="com.simple.mapper.WxCUserMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCUser"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCUser"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="open_id" jdbcType="VARCHAR" property="openId" /> | <result column="open_id" jdbcType="VARCHAR" property="openId" /> | ||||
| <result column="union_id" jdbcType="VARCHAR" property="unionId" /> | <result column="union_id" jdbcType="VARCHAR" property="unionId" /> | ||||
| @@ -2,9 +2,9 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxCUserTagsMapper"> | <mapper namespace="com.simple.mapper.WxCUserTagsMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCUserTags"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCUserTags"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="user_id" jdbcType="INTEGER" property="userId" /> | |||||
| <result column="user_id" jdbcType="BIGINT" property="userId" /> | |||||
| <result column="tags" jdbcType="VARCHAR" property="tags" /> | <result column="tags" jdbcType="VARCHAR" property="tags" /> | ||||
| </resultMap> | </resultMap> | ||||
| @@ -2,10 +2,10 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxCouponActionLogMapper"> | <mapper namespace="com.simple.mapper.WxCouponActionLogMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCouponActionLog"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCouponActionLog"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="coupon_id" jdbcType="INTEGER" property="couponId" /> | |||||
| <result column="user_id" jdbcType="INTEGER" property="userId" /> | |||||
| <result column="coupon_id" jdbcType="BIGINT" property="couponId" /> | |||||
| <result column="user_id" jdbcType="BIGINT" property="userId" /> | |||||
| <result column="action" jdbcType="VARCHAR" property="action" /> | <result column="action" jdbcType="VARCHAR" property="action" /> | ||||
| <result column="operation_time" jdbcType="TIMESTAMP" property="operationTime" /> | <result column="operation_time" jdbcType="TIMESTAMP" property="operationTime" /> | ||||
| </resultMap> | </resultMap> | ||||
| @@ -2,9 +2,9 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxCouponActivityMapper"> | <mapper namespace="com.simple.mapper.WxCouponActivityMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCouponActivity"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCouponActivity"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="merchant_id" jdbcType="INTEGER" property="merchantId" /> | |||||
| <result column="merchant_id" jdbcType="BIGINT" property="merchantId" /> | |||||
| <result column="type" jdbcType="INTEGER" property="type" /> | <result column="type" jdbcType="INTEGER" property="type" /> | ||||
| <result column="cover_img" jdbcType="VARCHAR" property="coverImg" /> | <result column="cover_img" jdbcType="VARCHAR" property="coverImg" /> | ||||
| <result column="title" jdbcType="VARCHAR" property="title" /> | <result column="title" jdbcType="VARCHAR" property="title" /> | ||||
| @@ -2,10 +2,10 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxCouponMapper"> | <mapper namespace="com.simple.mapper.WxCouponMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCoupon"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCoupon"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="activity_id" jdbcType="INTEGER" property="activityId" /> | |||||
| <result column="merchant_id" jdbcType="INTEGER" property="merchantId" /> | |||||
| <result column="activity_id" jdbcType="BIGINT" property="activityId" /> | |||||
| <result column="merchant_id" jdbcType="BIGINT" property="merchantId" /> | |||||
| <result column="type" jdbcType="INTEGER" property="type" /> | <result column="type" jdbcType="INTEGER" property="type" /> | ||||
| <result column="cover_img" jdbcType="VARCHAR" property="coverImg" /> | <result column="cover_img" jdbcType="VARCHAR" property="coverImg" /> | ||||
| <result column="title" jdbcType="VARCHAR" property="title" /> | <result column="title" jdbcType="VARCHAR" property="title" /> | ||||
| @@ -2,15 +2,15 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxCouponRecordMapper"> | <mapper namespace="com.simple.mapper.WxCouponRecordMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCouponRecord"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCouponRecord"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="coupon_id" jdbcType="INTEGER" property="couponId" /> | |||||
| <result column="order_id" jdbcType="INTEGER" property="orderId" /> | |||||
| <result column="c_user_id" jdbcType="INTEGER" property="cUserId" /> | |||||
| <result column="coupon_id" jdbcType="BIGINT" property="couponId" /> | |||||
| <result column="order_id" jdbcType="BIGINT" property="orderId" /> | |||||
| <result column="c_user_id" jdbcType="BIGINT" property="cUserId" /> | |||||
| <result column="buy_date" jdbcType="TIMESTAMP" property="buyDate" /> | <result column="buy_date" jdbcType="TIMESTAMP" property="buyDate" /> | ||||
| <result column="limit_date" jdbcType="TIMESTAMP" property="limitDate" /> | <result column="limit_date" jdbcType="TIMESTAMP" property="limitDate" /> | ||||
| <result column="c_status" jdbcType="INTEGER" property="cStatus" /> | <result column="c_status" jdbcType="INTEGER" property="cStatus" /> | ||||
| <result column="b_user_id" jdbcType="INTEGER" property="bUserId" /> | |||||
| <result column="b_user_id" jdbcType="BIGINT" property="bUserId" /> | |||||
| <result column="verification_date" jdbcType="TIMESTAMP" property="verificationDate" /> | <result column="verification_date" jdbcType="TIMESTAMP" property="verificationDate" /> | ||||
| <result column="verification_status" jdbcType="INTEGER" property="verificationStatus" /> | <result column="verification_status" jdbcType="INTEGER" property="verificationStatus" /> | ||||
| </resultMap> | </resultMap> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxCouponTypeMapper"> | <mapper namespace="com.simple.mapper.WxCouponTypeMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCouponType"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxCouponType"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="title" jdbcType="VARCHAR" property="title" /> | <result column="title" jdbcType="VARCHAR" property="title" /> | ||||
| </resultMap> | </resultMap> | ||||
| @@ -2,9 +2,9 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxEtcpCouponRecordMapper"> | <mapper namespace="com.simple.mapper.WxEtcpCouponRecordMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxEtcpCouponRecord"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxEtcpCouponRecord"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="coupon_id" jdbcType="INTEGER" property="couponId" /> | |||||
| <result column="coupon_id" jdbcType="BIGINT" property="couponId" /> | |||||
| <result column="car_number" jdbcType="VARCHAR" property="carNumber" /> | <result column="car_number" jdbcType="VARCHAR" property="carNumber" /> | ||||
| <result column="park_id" jdbcType="VARCHAR" property="parkId" /> | <result column="park_id" jdbcType="VARCHAR" property="parkId" /> | ||||
| <result column="business_id" jdbcType="VARCHAR" property="businessId" /> | <result column="business_id" jdbcType="VARCHAR" property="businessId" /> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxEtcpParkDissolutionMapper"> | <mapper namespace="com.simple.mapper.WxEtcpParkDissolutionMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxEtcpParkDissolution"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxEtcpParkDissolution"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="sign_no" jdbcType="VARCHAR" property="signNo" /> | <result column="sign_no" jdbcType="VARCHAR" property="signNo" /> | ||||
| </resultMap> | </resultMap> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxEtcpParkInMapper"> | <mapper namespace="com.simple.mapper.WxEtcpParkInMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxEtcpParkIn"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxEtcpParkIn"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="syn_id" jdbcType="VARCHAR" property="synId" /> | <result column="syn_id" jdbcType="VARCHAR" property="synId" /> | ||||
| <result column="plate_number" jdbcType="VARCHAR" property="plateNumber" /> | <result column="plate_number" jdbcType="VARCHAR" property="plateNumber" /> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxEtcpParkMsgSucMapper"> | <mapper namespace="com.simple.mapper.WxEtcpParkMsgSucMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxEtcpParkMsgSuc"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxEtcpParkMsgSuc"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="sign_no" jdbcType="VARCHAR" property="signNo" /> | <result column="sign_no" jdbcType="VARCHAR" property="signNo" /> | ||||
| </resultMap> | </resultMap> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxEtcpParkOrderunpayMapper"> | <mapper namespace="com.simple.mapper.WxEtcpParkOrderunpayMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxEtcpParkOrderunpay"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxEtcpParkOrderunpay"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="plate_number" jdbcType="VARCHAR" property="plateNumber" /> | <result column="plate_number" jdbcType="VARCHAR" property="plateNumber" /> | ||||
| <result column="code" jdbcType="INTEGER" property="code" /> | <result column="code" jdbcType="INTEGER" property="code" /> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxEtcpParkOutMapper"> | <mapper namespace="com.simple.mapper.WxEtcpParkOutMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxEtcpParkOut"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxEtcpParkOut"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="syn_id" jdbcType="VARCHAR" property="synId" /> | <result column="syn_id" jdbcType="VARCHAR" property="synId" /> | ||||
| <result column="plate_number" jdbcType="VARCHAR" property="plateNumber" /> | <result column="plate_number" jdbcType="VARCHAR" property="plateNumber" /> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxEtcpParkTransactionMapper"> | <mapper namespace="com.simple.mapper.WxEtcpParkTransactionMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxEtcpParkTransaction"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxEtcpParkTransaction"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="pay_type" jdbcType="INTEGER" property="payType" /> | <result column="pay_type" jdbcType="INTEGER" property="payType" /> | ||||
| <result column="syn_id" jdbcType="VARCHAR" property="synId" /> | <result column="syn_id" jdbcType="VARCHAR" property="synId" /> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxEtcpParkUnbindMapper"> | <mapper namespace="com.simple.mapper.WxEtcpParkUnbindMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxEtcpParkUnbind"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxEtcpParkUnbind"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="plate_number" jdbcType="VARCHAR" property="plateNumber" /> | <result column="plate_number" jdbcType="VARCHAR" property="plateNumber" /> | ||||
| </resultMap> | </resultMap> | ||||
| @@ -2,9 +2,9 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxFlashSaleMapper"> | <mapper namespace="com.simple.mapper.WxFlashSaleMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxFlashSale"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxFlashSale"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="activity_id" jdbcType="INTEGER" property="activityId" /> | |||||
| <result column="activity_id" jdbcType="BIGINT" property="activityId" /> | |||||
| <result column="createtime" jdbcType="TIMESTAMP" property="createtime" /> | <result column="createtime" jdbcType="TIMESTAMP" property="createtime" /> | ||||
| <result column="uptime" jdbcType="TIMESTAMP" property="uptime" /> | <result column="uptime" jdbcType="TIMESTAMP" property="uptime" /> | ||||
| <result column="is_enable" jdbcType="INTEGER" property="isEnable" /> | <result column="is_enable" jdbcType="INTEGER" property="isEnable" /> | ||||
| @@ -2,9 +2,9 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxMallBuildingMapper"> | <mapper namespace="com.simple.mapper.WxMallBuildingMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMallBuilding"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMallBuilding"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="mall_id" jdbcType="INTEGER" property="mallId" /> | |||||
| <result column="mall_id" jdbcType="BIGINT" property="mallId" /> | |||||
| <result column="name" jdbcType="VARCHAR" property="name" /> | <result column="name" jdbcType="VARCHAR" property="name" /> | ||||
| <result column="floor_number" jdbcType="INTEGER" property="floorNumber" /> | <result column="floor_number" jdbcType="INTEGER" property="floorNumber" /> | ||||
| </resultMap> | </resultMap> | ||||
| @@ -2,10 +2,10 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxMallFloorMapper"> | <mapper namespace="com.simple.mapper.WxMallFloorMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMallFloor"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMallFloor"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="mall_id" jdbcType="INTEGER" property="mallId" /> | |||||
| <result column="building_id" jdbcType="INTEGER" property="buildingId" /> | |||||
| <result column="mall_id" jdbcType="BIGINT" property="mallId" /> | |||||
| <result column="building_id" jdbcType="BIGINT" property="buildingId" /> | |||||
| <result column="floor_name" jdbcType="VARCHAR" property="floorName" /> | <result column="floor_name" jdbcType="VARCHAR" property="floorName" /> | ||||
| </resultMap> | </resultMap> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxMallMapper"> | <mapper namespace="com.simple.mapper.WxMallMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMall"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMall"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="name" jdbcType="VARCHAR" property="name" /> | <result column="name" jdbcType="VARCHAR" property="name" /> | ||||
| <result column="group" jdbcType="VARCHAR" property="group" /> | <result column="group" jdbcType="VARCHAR" property="group" /> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxMerchantMapper"> | <mapper namespace="com.simple.mapper.WxMerchantMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMerchant"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMerchant"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="img_url" jdbcType="VARCHAR" property="imgUrl" /> | <result column="img_url" jdbcType="VARCHAR" property="imgUrl" /> | ||||
| <result column="name" jdbcType="VARCHAR" property="name" /> | <result column="name" jdbcType="VARCHAR" property="name" /> | ||||
| @@ -2,10 +2,10 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxMerchantShopMapper"> | <mapper namespace="com.simple.mapper.WxMerchantShopMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMerchantShop"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMerchantShop"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="merchant_id" jdbcType="INTEGER" property="merchantId" /> | |||||
| <result column="shop_id" jdbcType="INTEGER" property="shopId" /> | |||||
| <result column="merchant_id" jdbcType="BIGINT" property="merchantId" /> | |||||
| <result column="shop_id" jdbcType="BIGINT" property="shopId" /> | |||||
| </resultMap> | </resultMap> | ||||
| <sql id="allColumns"> | <sql id="allColumns"> | ||||
| @@ -2,9 +2,9 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxMerchantTradeDaysMapper"> | <mapper namespace="com.simple.mapper.WxMerchantTradeDaysMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMerchantTradeDays"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMerchantTradeDays"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="merchant_id" jdbcType="INTEGER" property="merchantId" /> | |||||
| <result column="merchant_id" jdbcType="BIGINT" property="merchantId" /> | |||||
| <result column="trade_amt" jdbcType="DECIMAL" property="tradeAmt" /> | <result column="trade_amt" jdbcType="DECIMAL" property="tradeAmt" /> | ||||
| <result column="create_date" jdbcType="TIMESTAMP" property="createDate" /> | <result column="create_date" jdbcType="TIMESTAMP" property="createDate" /> | ||||
| </resultMap> | </resultMap> | ||||
| @@ -2,17 +2,17 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxMsgConfigMapper"> | <mapper namespace="com.simple.mapper.WxMsgConfigMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMsgConfig"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMsgConfig"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="secret" jdbcType="VARCHAR" property="secret" /> | <result column="secret" jdbcType="VARCHAR" property="secret" /> | ||||
| <result column="publickey" jdbcType="VARCHAR" property="publickey" /> | <result column="publickey" jdbcType="VARCHAR" property="publickey" /> | ||||
| <result column="bid" jdbcType="VARCHAR" property="bid" /> | <result column="bid" jdbcType="VARCHAR" property="bid" /> | ||||
| <result column="recharge" jdbcType="INTEGER" property="recharge" /> | |||||
| <result column="remains" jdbcType="INTEGER" property="remains" /> | |||||
| <result column="total" jdbcType="INTEGER" property="total" /> | |||||
| <result column="recharge" jdbcType="BIGINT" property="recharge" /> | |||||
| <result column="remains" jdbcType="BIGINT" property="remains" /> | |||||
| <result column="total" jdbcType="BIGINT" property="total" /> | |||||
| <result column="account" jdbcType="VARCHAR" property="account" /> | <result column="account" jdbcType="VARCHAR" property="account" /> | ||||
| <result column="reminderstatus" jdbcType="INTEGER" property="reminderstatus" /> | <result column="reminderstatus" jdbcType="INTEGER" property="reminderstatus" /> | ||||
| <result column="reminder" jdbcType="INTEGER" property="reminder" /> | |||||
| <result column="reminder" jdbcType="BIGINT" property="reminder" /> | |||||
| <result column="phone" jdbcType="VARCHAR" property="phone" /> | <result column="phone" jdbcType="VARCHAR" property="phone" /> | ||||
| </resultMap> | </resultMap> | ||||
| @@ -2,9 +2,9 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxMsgMapper"> | <mapper namespace="com.simple.mapper.WxMsgMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMsg"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMsg"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="model_id" jdbcType="INTEGER" property="modelId" /> | |||||
| <result column="model_id" jdbcType="BIGINT" property="modelId" /> | |||||
| <result column="msg" jdbcType="VARCHAR" property="msg" /> | <result column="msg" jdbcType="VARCHAR" property="msg" /> | ||||
| <result column="sendtime" jdbcType="TIMESTAMP" property="sendtime" /> | <result column="sendtime" jdbcType="TIMESTAMP" property="sendtime" /> | ||||
| <result column="createtime" jdbcType="TIMESTAMP" property="createtime" /> | <result column="createtime" jdbcType="TIMESTAMP" property="createtime" /> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxMsgModelMapper"> | <mapper namespace="com.simple.mapper.WxMsgModelMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMsgModel"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMsgModel"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="name" jdbcType="VARCHAR" property="name" /> | <result column="name" jdbcType="VARCHAR" property="name" /> | ||||
| <result column="signature" jdbcType="VARCHAR" property="signature" /> | <result column="signature" jdbcType="VARCHAR" property="signature" /> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxMsgSignatureMapper"> | <mapper namespace="com.simple.mapper.WxMsgSignatureMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMsgSignature"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxMsgSignature"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="name" jdbcType="VARCHAR" property="name" /> | <result column="name" jdbcType="VARCHAR" property="name" /> | ||||
| <result column="createtime" jdbcType="TIMESTAMP" property="createtime" /> | <result column="createtime" jdbcType="TIMESTAMP" property="createtime" /> | ||||
| @@ -2,10 +2,10 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxOrdersMapper"> | <mapper namespace="com.simple.mapper.WxOrdersMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxOrders"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxOrders"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="coupon_id" jdbcType="INTEGER" property="couponId" /> | |||||
| <result column="c_user_id" jdbcType="INTEGER" property="cUserId" /> | |||||
| <result column="coupon_id" jdbcType="BIGINT" property="couponId" /> | |||||
| <result column="c_user_id" jdbcType="BIGINT" property="cUserId" /> | |||||
| <result column="payment" jdbcType="DECIMAL" property="payment" /> | <result column="payment" jdbcType="DECIMAL" property="payment" /> | ||||
| <result column="status" jdbcType="INTEGER" property="status" /> | <result column="status" jdbcType="INTEGER" property="status" /> | ||||
| <result column="create_date" jdbcType="TIMESTAMP" property="createDate" /> | <result column="create_date" jdbcType="TIMESTAMP" property="createDate" /> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxParkMapper"> | <mapper namespace="com.simple.mapper.WxParkMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxPark"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxPark"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="addr" jdbcType="VARCHAR" property="addr" /> | <result column="addr" jdbcType="VARCHAR" property="addr" /> | ||||
| <result column="number" jdbcType="INTEGER" property="number" /> | <result column="number" jdbcType="INTEGER" property="number" /> | ||||
| @@ -2,12 +2,12 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxScoreHistoryMapper"> | <mapper namespace="com.simple.mapper.WxScoreHistoryMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxScoreHistory"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxScoreHistory"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="c_user_id" jdbcType="INTEGER" property="cUserId" /> | |||||
| <result column="c_user_id" jdbcType="BIGINT" property="cUserId" /> | |||||
| <result column="create_date" jdbcType="TIMESTAMP" property="createDate" /> | <result column="create_date" jdbcType="TIMESTAMP" property="createDate" /> | ||||
| <result column="valid_date" jdbcType="TIMESTAMP" property="validDate" /> | <result column="valid_date" jdbcType="TIMESTAMP" property="validDate" /> | ||||
| <result column="order_id" jdbcType="INTEGER" property="orderId" /> | |||||
| <result column="order_id" jdbcType="BIGINT" property="orderId" /> | |||||
| <result column="pay_type" jdbcType="INTEGER" property="payType" /> | <result column="pay_type" jdbcType="INTEGER" property="payType" /> | ||||
| <result column="pay_amount" jdbcType="DECIMAL" property="payAmount" /> | <result column="pay_amount" jdbcType="DECIMAL" property="payAmount" /> | ||||
| <result column="score_amount" jdbcType="INTEGER" property="scoreAmount" /> | <result column="score_amount" jdbcType="INTEGER" property="scoreAmount" /> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxScoreRulesMapper"> | <mapper namespace="com.simple.mapper.WxScoreRulesMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxScoreRules"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxScoreRules"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="consumption_amount" jdbcType="DECIMAL" property="consumptionAmount" /> | <result column="consumption_amount" jdbcType="DECIMAL" property="consumptionAmount" /> | ||||
| <result column="score_number" jdbcType="INTEGER" property="scoreNumber" /> | <result column="score_number" jdbcType="INTEGER" property="scoreNumber" /> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxScoreValidityPeriodMapper"> | <mapper namespace="com.simple.mapper.WxScoreValidityPeriodMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxScoreValidityPeriod"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxScoreValidityPeriod"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="year" jdbcType="VARCHAR" property="year" /> | <result column="year" jdbcType="VARCHAR" property="year" /> | ||||
| </resultMap> | </resultMap> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxShopMapper"> | <mapper namespace="com.simple.mapper.WxShopMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxShop"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxShop"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="title" jdbcType="VARCHAR" property="title" /> | <result column="title" jdbcType="VARCHAR" property="title" /> | ||||
| <result column="build_area" jdbcType="VARCHAR" property="buildArea" /> | <result column="build_area" jdbcType="VARCHAR" property="buildArea" /> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxTagsMapper"> | <mapper namespace="com.simple.mapper.WxTagsMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxTags"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxTags"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="name" jdbcType="VARCHAR" property="name" /> | <result column="name" jdbcType="VARCHAR" property="name" /> | ||||
| <result column="type1" jdbcType="VARCHAR" property="type1" /> | <result column="type1" jdbcType="VARCHAR" property="type1" /> | ||||
| @@ -2,7 +2,7 @@ | |||||
| <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | ||||
| <mapper namespace="com.simple.mapper.WxWebLogMapper"> | <mapper namespace="com.simple.mapper.WxWebLogMapper"> | ||||
| <resultMap id="BaseResultMap" type="com.simple.domain.po.WxWebLog"> | <resultMap id="BaseResultMap" type="com.simple.domain.po.WxWebLog"> | ||||
| <id column="id" jdbcType="INTEGER" property="id" /> | |||||
| <id column="id" jdbcType="BIGINT" property="id" /> | |||||
| <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" /> | ||||
| <result column="data" jdbcType="VARCHAR" property="data" /> | <result column="data" jdbcType="VARCHAR" property="data" /> | ||||
| <result column="create_date" jdbcType="TIMESTAMP" property="createDate" /> | <result column="create_date" jdbcType="TIMESTAMP" property="createDate" /> | ||||