|
@@ -1,5 +1,6 @@
|
|
package com.qmth.exam.reserve.entity;
|
|
package com.qmth.exam.reserve.entity;
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.qmth.exam.reserve.entity.base.BaseEntity;
|
|
import com.qmth.exam.reserve.entity.base.BaseEntity;
|
|
|
|
|
|
@@ -16,10 +17,12 @@ public class SystemPropertyEntity extends BaseEntity {
|
|
/**
|
|
/**
|
|
* 属性键
|
|
* 属性键
|
|
*/
|
|
*/
|
|
|
|
+ @TableField("`key`")
|
|
private String key;
|
|
private String key;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 属性值
|
|
* 属性值
|
|
*/
|
|
*/
|
|
|
|
+ @TableField("`value`")
|
|
private String value;
|
|
private String value;
|
|
}
|
|
}
|