|
@@ -1,6 +1,8 @@
|
|
|
package com.cclotus.cms.domain
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType
|
|
|
import com.baomidou.mybatisplus.annotation.TableField
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId
|
|
|
import com.baomidou.mybatisplus.annotation.TableName
|
|
|
|
|
|
@TableName("cms_post_attachment")
|
|
@@ -9,7 +11,7 @@ class CmsPostAttachment {
|
|
|
/**
|
|
|
* 附件ID
|
|
|
*/
|
|
|
- @TableField("attachment_id")
|
|
|
+ @TableId(value = "attachment_id", type = IdType.AUTO)
|
|
|
var attachmentId: Int? = null
|
|
|
|
|
|
/**
|