
com.github.yiuman.citrus.system.entity.Scope Maven / Gradle / Ivy
package com.github.yiuman.citrus.system.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
/**
* 数据范围
*
* @author yiuman
* @date 2020/5/29
*/
@Data
@TableName("sys_scope")
public class Scope {
@TableId(type = IdType.ASSIGN_ID)
private Long scopeId;
private String scopeName;
/**
* 数据范围所属组织,通用的为-1
*
* @see Organization
*/
private Long organId;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy