All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nxyfan.framework.drools.entity.SysRule Maven / Gradle / Ivy

package com.nxyfan.framework.drools.entity;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.nxyfan.framework.common.pojo.CommonEntity;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;

/** 
 *
 * Describe: 系统规则主实体类
 * Author: Lenovo  
 * Create Time: 2023年9月1日 上午8:35:52 
 * Copyright @ 2023 51LIFE  
 */
@SuppressWarnings("serial")
@Getter
@Setter
@TableName("SYS_RULE")
public class SysRule extends CommonEntity {

	/** id */
    @ApiModelProperty(value = "系统规则主键", position = 1)
    @TableId(value = "RULE_FLOW", type = IdType.ASSIGN_ID)
    private String ruleFlow;
    
    /** 名称 */
    @ApiModelProperty(value = "系统规则名称", position = 2)
    private String ruleName;
    
    /** 内容 */
    @ApiModelProperty(value = "系统规则内容", position = 3)
    private String ruleContent;
    
    /** 描述 */
    @ApiModelProperty(value = "描述", position = 4)
    private String description;

    /** 启用状态 */
    @ApiModelProperty(value = "启用状态", position = 5)
    private String useMark;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy