| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /*
- * Copyright 2019-2020 Zheng Jie
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package me.zhengjie.dao.mybatis.entity;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Getter;
- import lombok.Setter;
- import me.zhengjie.base.BaseEntity;
- import javax.persistence.*;
- import javax.validation.constraints.NotNull;
- import java.io.Serializable;
- /**
- * @author Zheng Jie
- * @date 2019-04-10
- */
- @Entity
- @Getter
- @Setter
- @Table(name="sys_dict_detail")
- public class DictDetail extends BaseEntity implements Serializable {
- @Id
- @Column(name = "detail_id")
- @NotNull(groups = Update.class)
- @ApiModelProperty(value = "ID", hidden = true)
- @GeneratedValue(strategy = GenerationType.IDENTITY)
- private Long id;
- @JoinColumn(name = "dict_id")
- @ManyToOne(fetch=FetchType.LAZY)
- @ApiModelProperty(value = "字典", hidden = true)
- private Dict dict;
- @ApiModelProperty(value = "字典标签")
- private String label;
- @ApiModelProperty(value = "字典值描述")
- @Column(name = "remark")
- private String remark;
-
- @ApiModelProperty(value = "字典值")
- private String value;
-
- @ApiModelProperty(value = "排序")
- private Integer dictSort = 999;
- }
|