| | |
| | | import com.panzhihua.common.model.vos.community.warehouse.QRCodeVO; |
| | | import com.panzhihua.service_community.entity.ComActWarehouseApply; |
| | | import com.panzhihua.service_community.service.ComActWarehouseApplyService; |
| | | import com.panzhihua.service_community.util.QRCodeUtil; |
| | | import com.panzhihua.service_community.schedule.util.QRCodeUtil; |
| | | import org.springframework.beans.BeanUtils; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | |
| | | public R update(@RequestBody ComActWarehouseApplyVO comActWarehouseApplyVO) { |
| | | ComActWarehouseApply comActWarehouseApply=new ComActWarehouseApply(); |
| | | BeanUtils.copyProperties(comActWarehouseApplyVO,comActWarehouseApply); |
| | | return R.ok(this.comActWarehouseApplyService.update(comActWarehouseApply)); |
| | | return this.comActWarehouseApplyService.update(comActWarehouseApply); |
| | | } |
| | | |
| | | /** |