| | |
| | | package com.qianwen.mdc.domain;
|
| | |
|
| | | import com.baomidou.mybatisplus.annotation.IdType;
|
| | | import com.baomidou.mybatisplus.annotation.TableId;
|
| | | import com.baomidou.mybatisplus.annotation.TableName;
|
| | | /**
|
| | | * 使用部门表,固定数据
|
| | | * 使用部门表
|
| | | */
|
| | | @TableName( "use_department")
|
| | | public class UseDepartment {
|
| | | @TableId
|
| | | private Integer id;
|
| | | @TableId(type=IdType.ASSIGN_ID)
|
| | | private Long id;
|
| | |
|
| | | private String name;
|
| | |
|
| | | public Integer getId() {
|
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | public void setId(Integer id) {
|
| | | public void setId(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|