tableId导致无法启动问题修改
This commit is contained in:
parent
12d586c7c3
commit
40b0be1467
|
@ -1,5 +1,6 @@
|
|||
package org.jeecg.modules.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
@ -10,10 +11,10 @@ import java.io.Serializable;
|
|||
@TableName(value = "gards_sample_description")
|
||||
public class GardsSampleDescription implements Serializable {
|
||||
|
||||
@TableId(value = "SAMPLE_ID")
|
||||
@TableField(value = "SAMPLE_ID")
|
||||
private Integer sampleId;
|
||||
|
||||
@TableId(value = "DESCRIPTION")
|
||||
@TableField(value = "DESCRIPTION")
|
||||
private String description;
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user