修改附件上传用户id类型为string,及审核页面不显示带文件上传状态
| | |
| | | @ApiParam("附件地址") @RequestParam @NotBlank String fileUrl, |
| | | @ApiParam("存储桶名称") @RequestParam String bucketName, |
| | | @ApiParam("对象名称") @RequestParam String objectName, |
| | | @ApiParam("上传用户ID") @RequestParam @NotNull Long uploadUserId, |
| | | @ApiParam("上传用户ID") @RequestParam @NotNull String uploadUserId, |
| | | @ApiParam("上传用户名") @RequestParam @NotBlank String uploadUserName, |
| | | @ApiParam("附件类型") @RequestParam String attachmentType, |
| | | @ApiParam("附件描述") @RequestParam String description) { |
| | |
| | | |
| | | @ApiModelProperty("上传用户ID") |
| | | @TableField("upload_user_id") |
| | | private Long uploadUserId; |
| | | private String uploadUserId; |
| | | |
| | | @ApiModelProperty("上传用户名") |
| | | @TableField("upload_user_name") |
| | |
| | | */ |
| | | Long uploadOrderAttachment(String orderId, String fileName, String originalName, |
| | | String fileType, Long fileSize, String fileUrl, |
| | | String bucketName, String objectName, Long uploadUserId, |
| | | String bucketName, String objectName, String uploadUserId, |
| | | String uploadUserName, String attachmentType, String description); |
| | | |
| | | /** |
| | |
| | | @Transactional(rollbackFor = Exception.class) |
| | | public Long uploadOrderAttachment(String orderId, String fileName, String originalName, |
| | | String fileType, Long fileSize, String fileUrl, |
| | | String bucketName, String objectName, Long uploadUserId, |
| | | String bucketName, String objectName, String uploadUserId, |
| | | String uploadUserName, String attachmentType, String description) { |
| | | // 参数校验 |
| | | if (!StringUtils.hasText(orderId)) { |
| | |
| | | <include refid="Base_Column_List"/> |
| | | FROM tb_order_info |
| | | WHERE deleted = 0 |
| | | AND order_status IN ('待上传文件', '待审批授权','待授权', '待交易确认', '已完成', '已取消') |
| | | AND order_status IN ('待审批授权','待授权', '待交易确认', '已完成', '已取消') |
| | | <if test="orderStatus != null and orderStatus != ''"> |
| | | AND order_status = #{orderStatus} |
| | | </if> |
| | |
| | | <include refid="Base_Column_List"/> |
| | | FROM tb_order_info |
| | | WHERE deleted = 0 |
| | | AND order_status IN ('待上传文件', '待授权', '待审批授权', '待交易确认', '已完成', '已取消') |
| | | AND order_status IN ('待授权', '待审批授权', '待交易确认', '已完成', '已取消') |
| | | <if test="orderStatus != null and orderStatus != ''"> |
| | | AND order_status = #{orderStatus} |
| | | </if> |