|
|
|
@ -0,0 +1,62 @@ |
|
|
|
package com.xujie.sys.modules.sys.entity; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableId; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
import lombok.Data; |
|
|
|
import org.springframework.format.annotation.DateTimeFormat; |
|
|
|
|
|
|
|
import java.io.Serializable; |
|
|
|
import java.util.Date; |
|
|
|
|
|
|
|
@TableName("sys_fill_rule") |
|
|
|
@Data |
|
|
|
public class SysFillRule implements Serializable { |
|
|
|
/** |
|
|
|
* 主键ID |
|
|
|
*/ |
|
|
|
@TableId(type = IdType.AUTO) |
|
|
|
@ApiModelProperty(value = "主键ID") |
|
|
|
private Long id; |
|
|
|
/** |
|
|
|
* 规则名称 |
|
|
|
*/ |
|
|
|
|
|
|
|
@ApiModelProperty(value = "规则名称") |
|
|
|
private java.lang.String ruleName; |
|
|
|
/** |
|
|
|
* 规则Code |
|
|
|
*/ |
|
|
|
|
|
|
|
@ApiModelProperty(value = "规则Code") |
|
|
|
private java.lang.String ruleCode; |
|
|
|
/** |
|
|
|
* 规则实现类 |
|
|
|
*/ |
|
|
|
@ApiModelProperty(value = "规则实现类") |
|
|
|
private java.lang.String ruleClass; |
|
|
|
/** |
|
|
|
* 规则参数 |
|
|
|
*/ |
|
|
|
|
|
|
|
@ApiModelProperty(value = "规则参数") |
|
|
|
private java.lang.String ruleParams; |
|
|
|
private String createBy; |
|
|
|
|
|
|
|
/** |
|
|
|
* create_date |
|
|
|
*/ |
|
|
|
private Date createDate; |
|
|
|
|
|
|
|
/** |
|
|
|
* update_by |
|
|
|
*/ |
|
|
|
private String updateBy; |
|
|
|
|
|
|
|
/** |
|
|
|
* update_date |
|
|
|
*/ |
|
|
|
private Date updateDate; |
|
|
|
} |