| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /*
- * 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.NotBlank;
- import javax.validation.constraints.NotNull;
- import java.io.Serializable;
- import java.util.Objects;
- /**
- * @author Zheng Jie
- * @date 2019-03-29
- */
- @Entity
- @Getter
- @Setter
- @Table(name="sys_job")
- public class Job extends BaseEntity implements Serializable {
- @Id
- @Column(name = "job_id")
- @NotNull(groups = Update.class)
- @ApiModelProperty(value = "ID", hidden = true)
- @GeneratedValue(strategy = GenerationType.IDENTITY)
- private Long id;
- @NotBlank
- @ApiModelProperty(value = "岗位名称")
- private String name;
- @NotNull
- @ApiModelProperty(value = "岗位排序")
- private Long jobSort;
- @NotNull
- @ApiModelProperty(value = "是否启用")
- private Boolean enabled;
- @Override
- public boolean equals(Object o) {
- if (this == o) {
- return true;
- }
- if (o == null || getClass() != o.getClass()) {
- return false;
- }
- Job job = (Job) o;
- return Objects.equals(id, job.id);
- }
- @Override
- public int hashCode() {
- return Objects.hash(id);
- }
- }
|