|
|
|
@@ -1,7 +1,9 @@ |
|
|
|
package com.xueyi.nlt.nlt.domain.po; |
|
|
|
|
|
|
|
import com.alibaba.fastjson2.JSONObject; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
import com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler; |
|
|
|
import com.xueyi.common.core.web.tenant.base.TBaseEntity; |
|
|
|
import lombok.Data; |
|
|
|
import lombok.EqualsAndHashCode; |
|
|
|
@@ -13,7 +15,7 @@ import static com.xueyi.common.core.constant.basic.EntityConstants.*; |
|
|
|
|
|
|
|
@Data |
|
|
|
@EqualsAndHashCode(callSuper = true) |
|
|
|
@TableName(value = "init_regular_expression", excludeProperty = { SORT, REMARK, STATUS }) |
|
|
|
@TableName(value = "init_regular_expression", autoResultMap = true,excludeProperty = { SORT, REMARK, STATUS }) |
|
|
|
public class DmRegularPo extends TBaseEntity { |
|
|
|
@Serial |
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
@@ -24,6 +26,7 @@ public class DmRegularPo extends TBaseEntity { |
|
|
|
|
|
|
|
private String action; |
|
|
|
|
|
|
|
@TableField(value = "json", typeHandler = JacksonTypeHandler.class) |
|
|
|
private JSONObject json; |
|
|
|
|
|
|
|
private String expression; |
|
|
|
|