| | |
| | | package com.doumee.dao.system.model; |
| | | |
| | | import com.doumee.core.constants.OperaType; |
| | | import com.doumee.core.model.LoginUserModel; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | |
| | | import io.swagger.v3.oas.annotations.Operation; |
| | | import io.swagger.v3.oas.annotations.tags.Tag; |
| | | import javax.validation.constraints.NotBlank; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.io.Serializable; |
| | |
| | | @Data |
| | | @ApiModel("数据权限配置") |
| | | @TableName("SYSTEM_DATA_PERMISSION") |
| | | public class SystemDataPermission implements Serializable { |
| | | public class SystemDataPermission extends LoginUserModel implements Serializable { |
| | | |
| | | @TableId(type = IdType.AUTO) |
| | | @ApiModelProperty(value = "主键", example = "1") |