新增岗位管理

This commit is contained in:
TinyAnts
2022-06-07 15:34:04 +08:00
parent f36c8ac05d
commit c22797cf87
11 changed files with 519 additions and 17 deletions

View File

@@ -0,0 +1,29 @@
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 SystemPost implements Serializable {
private static final long serialVersionUID = 1L;
@TableId(value="id", type= IdType.AUTO)
private Integer id;
private String code;
private String name;
private String remarks;
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.SystemPost;
import org.apache.ibatis.annotations.Mapper;
/**
* 系统岗位
*/
@Mapper
public interface SystemPostMapper extends IBaseMapper<SystemPost> {
}