|
|
@ -1,6 +1,8 @@ |
|
|
|
package com.tduck.cloud.project.entity; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableId; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
import com.tduck.cloud.common.entity.BaseEntity; |
|
|
|
import com.tduck.cloud.common.mybatis.handler.JacksonTypeHandler; |
|
|
@ -21,7 +23,8 @@ import java.util.Set; |
|
|
|
@Accessors(chain = true) |
|
|
|
@TableName(value = "pr_user_project_logic", autoResultMap = true) |
|
|
|
public class UserProjectLogicEntity extends BaseEntity<UserProjectLogicEntity> { |
|
|
|
private Long id; |
|
|
|
@TableId(type = IdType.ASSIGN_ID) |
|
|
|
private String id; |
|
|
|
/** |
|
|
|
* 项目key |
|
|
|
*/ |
|
|
@ -30,7 +33,7 @@ public class UserProjectLogicEntity extends BaseEntity<UserProjectLogicEntity> { |
|
|
|
/** |
|
|
|
* 表单项Id |
|
|
|
*/ |
|
|
|
private Long formItemId; |
|
|
|
private String formItemId; |
|
|
|
/** |
|
|
|
* 条件成立的表达式 |
|
|
|
*/ |
|
|
@ -52,7 +55,7 @@ public class UserProjectLogicEntity extends BaseEntity<UserProjectLogicEntity> { |
|
|
|
/** |
|
|
|
* 表单项Id |
|
|
|
*/ |
|
|
|
private Long formItemId; |
|
|
|
private String formItemId; |
|
|
|
/** |
|
|
|
* 表达式 |
|
|
|
*/ |
|
|
@ -63,4 +66,4 @@ public class UserProjectLogicEntity extends BaseEntity<UserProjectLogicEntity> { |
|
|
|
private Object optionValue; |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|