查询的时候id没指定好,导致查询出多条,所以报错了

Blade 未结 1 686
3092844924
3092844924 剑圣 2021-07-19 17:01

一、该问题的重现步骤是什么?

1. 每次点击某条记录的编辑、查看按钮的时候就会报下面的错image.png

2. 这个vue前页面image.png

3.这个是主键:image.png



想问这么改掉这个报错?


二、你期待的结果是什么?实际看到的又是什么?


三、你正在使用的是什么产品,什么版本?在什么操作系统上?


四、请提供详细的错误堆栈信息,这很重要。

/*
 *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions are met:
 *
 *  Redistributions of source code must retain the above copyright notice,
 *  this list of conditions and the following disclaimer.
 *  Redistributions in binary form must reproduce the above copyright
 *  notice, this list of conditions and the following disclaimer in the
 *  documentation and/or other materials provided with the distribution.
 *  Neither the name of the dreamlu.net developer nor the names of its
 *  contributors may be used to endorse or promote products derived from
 *  this software without specific prior written permission.
 *  Author: Chill 庄骞 (smallchill@163.com)
 */
package org.springblade.modules.desk.entity;

import java.math.BigDecimal;
import java.io.Serializable;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import lombok.EqualsAndHashCode;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

/**
 * 实体类
 *
 * @author BladeX
 * @since 2021-07-19
 */
@Data
@ApiModel(value = "Formson0635对象", description = "Formson0635对象")
public class Formson0635 implements Serializable {

   private static final long serialVersionUID = 1L;

   /**
   * L1.0序号
   */
      @TableId(value = "field0005", type = IdType.INPUT)
      @ApiModelProperty(value = "L1.0序号")
      private BigDecimal field0005;
   /**
   * 资产ID
   */
      @ApiModelProperty(value = "资产ID")
      private String field0006;
   /**
   * L1.1资产名称
   */
      @ApiModelProperty(value = "L1.1资产名称")
      private String field0007;
   /**
   * L1.2资产状态
   */
      @ApiModelProperty(value = "L1.2资产状态")
      private String field0009;
   /**
   * L1.3入库日期
   */
      @ApiModelProperty(value = "L1.3入库日期")
      private String field0010;
   /**
   * L1.4责任人
   */
      @ApiModelProperty(value = "L1.4责任人")
      private String field0008;
   /**
   * L1.5责任部门
   */
      @ApiModelProperty(value = "L1.5责任部门")
      private String field0015;
   /**
   * L1.6备注
   */
      @ApiModelProperty(value = "L1.6备注")
      private String field0011;


}

五、若有更多详细信息,请在下面提供。


1条回答
  • 你自己数据问题,根据sql查询有三条记录,自己拿打印的sql去数据库查询一下。

    0 讨论(0)
提交回复