部门管理

This commit is contained in:
TinyAnts
2022-06-07 11:11:59 +08:00
parent e4e040eb23
commit f36c8ac05d
12 changed files with 477 additions and 7 deletions

View File

@@ -0,0 +1,30 @@
package com.hxkj.common.entity.system;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import java.io.Serializable;
/**
* 系统岗位实体
*/
@Data
public class SystemDept implements Serializable {
private static final long serialVersionUID = 1L;
@TableId(value="id", type= IdType.AUTO)
private Integer id;
private Integer pid;
private String name;
private String duty;
private String mobile;
private Integer sort;
private Integer isStop;
private Integer isDelete;
private Long createTime;
private Long updateTime;
private Long deleteTime;
}

View File

@@ -0,0 +1,12 @@
package com.hxkj.common.mapper.system;
import com.hxkj.common.core.basics.IBaseMapper;
import com.hxkj.common.entity.system.SystemDept;
import org.apache.ibatis.annotations.Mapper;
/**
* 系统岗位
*/
@Mapper
public interface SystemDeptMapper extends IBaseMapper<SystemDept> {
}