diff --git a/src/main/java/com/sixteam/irs/controller/EnterpriseController.java b/src/main/java/com/sixteam/irs/controller/EnterpriseController.java index 37617c173d7924f7a2fa022afff9cde765011ddd..d56a9a2d4b50d99934aba34f17f5d4c976e2954c 100644 --- a/src/main/java/com/sixteam/irs/controller/EnterpriseController.java +++ b/src/main/java/com/sixteam/irs/controller/EnterpriseController.java @@ -4,6 +4,7 @@ import com.sixteam.irs.entity.Enterprise; import com.sixteam.irs.entity.User; import com.sixteam.irs.service.EnterpriseService; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; @@ -12,7 +13,7 @@ import org.springframework.web.bind.annotation.RestController; import javax.servlet.http.HttpServletRequest; import java.util.List; -@RestController +@Controller @RequestMapping("/enterprise") public class EnterpriseController { @@ -25,7 +26,7 @@ public class EnterpriseController { List getAllEnterprise = enterpriseService.getAllEnterprise(); request.setAttribute("getAllEnterprise",getAllEnterprise); System.out.println(getAllEnterprise); - return "/test/enterprise/企业列表页面.html"; + return "/test/enterprise/企业列表页面"; } @RequestMapping("/toAddEnterprise") diff --git a/src/main/java/com/sixteam/irs/controller/StationController.java b/src/main/java/com/sixteam/irs/controller/StationController.java index 7436df9a67d5c7b1a2220bd851ccdd5d1be5d61b..bba82d3ad014c65fbd95090a29b8d0cfa77357a1 100644 --- a/src/main/java/com/sixteam/irs/controller/StationController.java +++ b/src/main/java/com/sixteam/irs/controller/StationController.java @@ -4,6 +4,7 @@ import com.sixteam.irs.entity.Station; import com.sixteam.irs.service.StationService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import javax.servlet.http.HttpServletRequest; @@ -21,16 +22,16 @@ public class StationController { List getAllStation = stationService.getAllStation(); request.setAttribute("getAllStation",getAllStation); System.out.println(getAllStation); - return "/test/station/企业的岗位列表.html"; + return "/test/station/查询所有岗位.html"; } //查询所有岗位和企业 @RequestMapping("/getAllSAE") - public List getAllSAE(HttpServletRequest request){ + public String getAllSAE(HttpServletRequest request){ List getAllSAE = stationService.getAllSAE(); request.setAttribute("getAllStation",getAllSAE); System.out.println(getAllSAE); - return getAllSAE; + return "/test/station/查询所有岗位和企业信息.html"; } @RequestMapping("/toAddStation") public String toAddStation(){ @@ -38,34 +39,76 @@ public class StationController { return "/test/station/添加岗位.html"; } @RequestMapping("/addStation") - public String addStation(Station station,HttpServletRequest request){ - int res=stationService.addStation(station); + public String addStation(Station station,HttpServletRequest request,String eid){ + eid="1"; + int res=stationService.addStation(station,eid); if (res>0) { - System.out.println("添加企业成功"); - return "/test/station/getAllStation"; + System.out.println("添加岗位成功,光联"); + return "redirect:/station/findStationByEId"; }else { - System.out.println("添加企业失败"); + System.out.println("添加岗位失败"); request.setAttribute("errorMessage", "添加错误"); return "/test/错误页面"; } } - //修改 - @RequestMapping("/updateStation") - public void updateStation(Station station,HttpServletRequest request) { - int i = stationService.updateStation(station); - if(i>0){ - System.out.println("修改岗位成功"); - }else { - System.out.println("修改岗位失败"); +// //添加岗位企业关联 +// @RequestMapping("/addStationInE") +// public String addStationInE(Station station,HttpServletRequest request,String eid){ +// int res=stationService.addStationInE(station,eid); +// if (res>0) { +// System.out.println("添加岗位企业关联成功"); +// return "redirect:/station/findStationByEId"; +// }else { +// System.out.println("添加岗位失败"); +// request.setAttribute("errorMessage", "添加错误"); +// return "/test/错误页面"; +// } +// } + + @RequestMapping(value = "/deleteStation") + public String deleteStation(Station station,Model model,HttpServletRequest request) { + + if (stationService.deleteStation(station)!=null) { + System.out.println("删除岗位成功"); + return "redirect:/station/findStationByEId"; + } else { + System.out.println("删除岗位失败"); + model.addAttribute("errorMessage", "删除错误"); + return "/test/错误页面"; } } + + + @RequestMapping("/toUpdateEnterprise") + public String toUpdateStation(Station station, Model model, Integer sId) { + System.out.println(sId); + int i = sId; + Station station1 = stationService.findBySId(i); + model.addAttribute("station1", station1); + + return "/test/station/修改岗位"; + } + //修改岗位 + @RequestMapping(value = "/updateStation") + public String updateStation(Station station, Model model) { + if (stationService.updateStation(station)>0) { + + return "redirect:/station/findStationByEId"; + } else { + + model.addAttribute("errorMessage", "修改错误"); + return "/test/错误页面"; + } + } + + //按名称查询 @RequestMapping("/stationName") public String findStationByName(String stationName,HttpServletRequest request) { List findStationByName = stationService.findStationByName(stationName); if (findStationByName!=null && findStationByName.size()>0){ request.setAttribute("findStationByName",findStationByName); - System.out.println("模糊查询成功"+findStationByName); + System.out.println("名字模糊查询成功"+findStationByName); return "/test/station/findStationByName"; }else{ request.setAttribute("errorMessage", "查询不到该关键字"); @@ -73,17 +116,17 @@ public class StationController { } } //通过企业id查询企业的岗位 - @RequestMapping("/findStationById") + @RequestMapping("/findStationByEId") public String findStationById(String stationId,HttpServletRequest request) { String eid = "1"; List findStationByEIdlist = stationService.findStationByEId(eid); if (findStationByEIdlist != null && findStationByEIdlist.size()>0){ request.setAttribute("findStationByEIdlist",findStationByEIdlist); - System.out.println("模糊查询成功"+findStationByEIdlist); + System.out.println("企业id查询企业的岗位查询成功"+findStationByEIdlist); return "/test/station/企业的岗位列表"; }else{ - System.out.println("模糊查询失败"); + System.out.println("企业id查询企业的岗位查询失败"); request.setAttribute("errorMessage", "查询不到该企业ID"); return "/test/错误页面"; } diff --git a/src/main/java/com/sixteam/irs/entity/Enterprise.java b/src/main/java/com/sixteam/irs/entity/Enterprise.java index 9c67dbc0f0cc86e8d8216dcf61ffc85e62c38038..9fb25827b1bb957d9a65d3efceecb86c5b498cb8 100644 --- a/src/main/java/com/sixteam/irs/entity/Enterprise.java +++ b/src/main/java/com/sixteam/irs/entity/Enterprise.java @@ -9,6 +9,8 @@ public class Enterprise { private String eStart;//企业成立时间 private String eType;//企业类型,定位 private String eFounder;//企业创始人 + private String eAddress;//企业地点 + private String eState;//企业申请认证 已通过/未通过 // List departmentList;//嵌套查询角色,用户 @@ -18,13 +20,16 @@ public class Enterprise { public Enterprise() { } - public Enterprise(String eId, String eName, String eIntroduce, String eStart, String eType, String eFounder) { + public Enterprise(String eId, String eName, String eIntroduce, String eStart, String eType, String eFounder, String eAddress, String eState, List stationList) { this.eId = eId; this.eName = eName; this.eIntroduce = eIntroduce; this.eStart = eStart; this.eType = eType; this.eFounder = eFounder; + this.eAddress = eAddress; + this.eState = eState; + this.stationList = stationList; } public String geteId() { @@ -75,6 +80,30 @@ public class Enterprise { this.eFounder = eFounder; } + public String geteAddress() { + return eAddress; + } + + public void seteAddress(String eAddress) { + this.eAddress = eAddress; + } + + public String geteState() { + return eState; + } + + public void seteState(String eState) { + this.eState = eState; + } + + public List getStationList() { + return stationList; + } + + public void setStationList(List stationList) { + this.stationList = stationList; + } + @Override public String toString() { return "Enterprise{" + @@ -84,6 +113,9 @@ public class Enterprise { ", eStart='" + eStart + '\'' + ", eType='" + eType + '\'' + ", eFounder='" + eFounder + '\'' + + ", eAddress='" + eAddress + '\'' + + ", eState='" + eState + '\'' + + ", stationList=" + stationList + '}'; } } diff --git a/src/main/java/com/sixteam/irs/entity/StationEnterprise.java b/src/main/java/com/sixteam/irs/entity/StationEnterprise.java new file mode 100644 index 0000000000000000000000000000000000000000..5c8eaa0e445894742a6b6b03325ea812da25cb41 --- /dev/null +++ b/src/main/java/com/sixteam/irs/entity/StationEnterprise.java @@ -0,0 +1,49 @@ +package com.sixteam.irs.entity; + +public class StationEnterprise { + private String seId;//主键 + private String sId;//岗位外键 + private String eId;//企业外键 + + public StationEnterprise() { + } + + public StationEnterprise(String seId, String sId, String eId) { + this.seId = seId; + this.sId = sId; + this.eId = eId; + } + + public String getSeId() { + return seId; + } + + public void setSeId(String seId) { + this.seId = seId; + } + + public String getsId() { + return sId; + } + + public void setsId(String sId) { + this.sId = sId; + } + + public String geteId() { + return eId; + } + + public void seteId(String eId) { + this.eId = eId; + } + + @Override + public String toString() { + return "StationEnterprise{" + + "seId='" + seId + '\'' + + ", sId='" + sId + '\'' + + ", eId='" + eId + '\'' + + '}'; + } +} diff --git a/src/main/java/com/sixteam/irs/mapper/StationEnterpriseMapper.java b/src/main/java/com/sixteam/irs/mapper/StationEnterpriseMapper.java new file mode 100644 index 0000000000000000000000000000000000000000..202062d0fff1bd11be12b25b6ad6c3f9f36d4fbe --- /dev/null +++ b/src/main/java/com/sixteam/irs/mapper/StationEnterpriseMapper.java @@ -0,0 +1,14 @@ +package com.sixteam.irs.mapper; + + +import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; +import org.springframework.stereotype.Repository; + +@Mapper +@Repository +public interface StationEnterpriseMapper { + + int addStationInE(@Param("seId") String seId, @Param("sId") String sId, @Param("eId") String eId); + +} diff --git a/src/main/java/com/sixteam/irs/mapper/StationMapper.java b/src/main/java/com/sixteam/irs/mapper/StationMapper.java index d6a6fba1cd86396cf25909a0c9de8538a28ef024..9b3d3ee9ceb0c678a7e7b34169742381262a7e2f 100644 --- a/src/main/java/com/sixteam/irs/mapper/StationMapper.java +++ b/src/main/java/com/sixteam/irs/mapper/StationMapper.java @@ -17,7 +17,7 @@ public interface StationMapper { " VALUES (#{sId},#{sName},#{sWages},#{sWork},#{sDepartment},#{sNumber},#{sEducation},#{sWorkdays},#{sSubsidy},#{sGold})") int addStation(Station station); - @Update("update irs_station set s_name=#{sName},s_wages=#{sWages},s_work=#{sWork},s_department=#{sDepartment},s_number=#{sNumber},s_education=#{sEducation},s_workdays=#{sWorkdays},s_subsidy=#{sSubsidy},s_gold=#{sGold} where s_id = 1") + @Update("update irs_station set s_name=#{sName},s_wages=#{sWages},s_work=#{sWork},s_department=#{sDepartment},s_number=#{sNumber},s_education=#{sEducation},s_workdays=#{sWorkdays},s_subsidy=#{sSubsidy},s_gold=#{sGold} where s_id = #{sId}") int updateStation(Station station); //查询岗位且企业 List getAllSAE(); @@ -25,4 +25,9 @@ public interface StationMapper { List findStationByName(String stationName); //通过企业id查询企业的岗位 List findStationByEId(String eid); + @Delete("delete from irs_station where s_id = #{sId}") + String deleteStation(Station station); + @Select("select * from irs_station where s_id = #{i}") + Station findBySId(int i); + } diff --git a/src/main/java/com/sixteam/irs/service/Impl/StationServiceImpl.java b/src/main/java/com/sixteam/irs/service/Impl/StationServiceImpl.java index 6c060746a60fb4366b4d1df4f69d4e8065d5034b..7160b91fe67fe8cde5d49bee1cded879147b2bc2 100644 --- a/src/main/java/com/sixteam/irs/service/Impl/StationServiceImpl.java +++ b/src/main/java/com/sixteam/irs/service/Impl/StationServiceImpl.java @@ -1,8 +1,10 @@ package com.sixteam.irs.service.Impl; import com.sixteam.irs.entity.Station; +import com.sixteam.irs.mapper.StationEnterpriseMapper; import com.sixteam.irs.mapper.StationMapper; import com.sixteam.irs.service.StationService; +import com.sixteam.irs.utils.UuidUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @@ -13,6 +15,8 @@ public class StationServiceImpl implements StationService { @Autowired private StationMapper stationMapper; + @Autowired + private StationEnterpriseMapper stationEnterpriseMapper; @Override public List getAllStation() { @@ -20,8 +24,12 @@ public class StationServiceImpl implements StationService { } @Override - public int addStation(Station station) { - return stationMapper.addStation(station); + public int addStation(Station station,String eid) { + station.setsId(UuidUtils.uuid()); + int i1 = stationMapper.addStation(station); + String seId=UuidUtils.uuid(); + int i2 = stationEnterpriseMapper.addStationInE(seId,station.getsId(),eid); + return i1+i2; } @Override @@ -43,4 +51,16 @@ public class StationServiceImpl implements StationService { public List findStationByEId(String eid) { return stationMapper.findStationByEId(eid); } + + @Override + public String deleteStation(Station station) { + return stationMapper.deleteStation(station); + } + + @Override + public Station findBySId(int i) { + return stationMapper.findBySId(i); + } + + } diff --git a/src/main/java/com/sixteam/irs/service/StationService.java b/src/main/java/com/sixteam/irs/service/StationService.java index 1e3bfb71706b455be6a50fae391f6a009c0d9abc..3b9f4c4aba19fcf6c5731f0ebad5d888c46133bf 100644 --- a/src/main/java/com/sixteam/irs/service/StationService.java +++ b/src/main/java/com/sixteam/irs/service/StationService.java @@ -7,7 +7,7 @@ import java.util.List; public interface StationService { List getAllStation(); - int addStation(Station station); + int addStation(Station station,String eid); int updateStation(Station station); //查岗位和企业 @@ -16,4 +16,10 @@ public interface StationService { List findStationByName(String stationName); //通过企业id查询企业的岗位 List findStationByEId(String eid); + + String deleteStation(Station station); + + //修改查询一条 + Station findBySId(int i); + } diff --git a/src/main/java/com/sixteam/irs/utils/Page.java b/src/main/java/com/sixteam/irs/utils/Page.java new file mode 100644 index 0000000000000000000000000000000000000000..5a7c30fce14db92ae3346125c794f36cfd0382cc --- /dev/null +++ b/src/main/java/com/sixteam/irs/utils/Page.java @@ -0,0 +1,137 @@ +package com.sixteam.irs.utils; + +import java.util.List; + +public class Page { + + /** + *当前页码 + * 上一页 + * 下一页 + * 总页数 + * 每页条数 + * 总条数 + * 开始索引 + * + * 总记录集合 + * + * 链接 + * + * 当点击第4页 显示2 3 4 5 6 + */ + + //总记录集合 + private List list; + //当前页码 + private int currentPage; + //上一页 + private int prePage; + //下一页 + private int nextPage; + //总页数 + private int totalPage; + //总条数 + private int totalRecords; + //每页显示条数 + private int pageSize=5; + //开始索引 + private int startIndex; + //开始链接 + private String url; + + + public Page() { + } + + public Page(int currentPage, int totalRecords) { + this.currentPage = currentPage; + this.totalRecords = totalRecords; + //总页数 + if(totalRecords == 0) + { + totalPage=1; + } + else { + totalPage=totalRecords/pageSize; + if(totalRecords%pageSize>0){ + totalPage++; + } + } + //索引值 + startIndex = (currentPage -1 )*pageSize; + } + + public List getList() { + return list; + } + + public void setList(List list) { + this.list = list; + } + + public int getCurrentPage() { + return currentPage; + } + + public void setCurrentPage(int currentPage) { + this.currentPage = currentPage; + } + //获取上一页 + public int getPrePage() { + prePage=currentPage-1>0 ? currentPage-1:1; + return prePage; + } + + public void setPrePage(int prePage) { + this.prePage = prePage; + } + //获取下一页 + public int getNextPage() { + nextPage = currentPage+1 > totalPage ? totalPage:currentPage+1; + return nextPage; + } + + public void setNextPage(int nextPage) { + this.nextPage = nextPage; + } + + public int getTotalPage() { + return totalPage; + } + + public void setTotalPage(int totalPage) { + this.totalPage = totalPage; + } + + public int getTotalRecords() { + return totalRecords; + } + + public void setTotalRecords(int totalRecords) { + this.totalRecords = totalRecords; + } + + public int getPageSize() { + return pageSize; + } + + public void setPageSize(int pageSize) { + this.pageSize = pageSize; + } + + public int getStartIndex() { + return startIndex; + } + + public void setStartIndex(int startIndex) { + this.startIndex = startIndex; + } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } +} diff --git a/src/main/resources/com/sixteam/irs/mapper/EnterpriseMapper.xml b/src/main/resources/com/sixteam/irs/mapper/EnterpriseMapper.xml index 11cb26f913a6ad56486ebd408533b42cb9ec5364..a346337ad3c2894429b4c398608bb9d23061aeb0 100644 --- a/src/main/resources/com/sixteam/irs/mapper/EnterpriseMapper.xml +++ b/src/main/resources/com/sixteam/irs/mapper/EnterpriseMapper.xml @@ -8,6 +8,8 @@ + + - insert into irs_enterprise (e_id,e_name,e_introduce,e_start,e_type,e_founder) - values (#{eId},#{eName},#{eIntroduce},#{eStart},#{eType},#{eFounder}) + insert into irs_enterprise (e_id,e_name,e_introduce,e_start,e_type,e_founder,e_address,e_state) + values (#{eId},#{eName},#{eIntroduce},#{eStart},#{eType},#{eFounder},#{eAddress},'未通过') @@ -39,6 +41,8 @@ e_start = #{eStart}, e_type = #{eType}, e_founder = #{eFounder}, + e_address = #{eAddress}, + e_state = #{eState}, where eId = #{eId} diff --git a/src/main/resources/com/sixteam/irs/mapper/StationEnterpriseMapper.xml b/src/main/resources/com/sixteam/irs/mapper/StationEnterpriseMapper.xml new file mode 100644 index 0000000000000000000000000000000000000000..1c0ead2baedfacbc2371bac8a779f14170dd2592 --- /dev/null +++ b/src/main/resources/com/sixteam/irs/mapper/StationEnterpriseMapper.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + INSERT INTO irs_station_enterprise(se_id,s_id,e_id) VALUES (#{seId},#{sId},#{eId}) + + \ No newline at end of file diff --git a/src/main/resources/com/sixteam/irs/mapper/StationMapper.xml b/src/main/resources/com/sixteam/irs/mapper/StationMapper.xml index bd67e113556b9093efe92f7fa9734582ad2e7b91..7d9dca81aea2aa2a8a2b841a2b6bbf60e063c379 100644 --- a/src/main/resources/com/sixteam/irs/mapper/StationMapper.xml +++ b/src/main/resources/com/sixteam/irs/mapper/StationMapper.xml @@ -19,8 +19,12 @@ + + + +
公司类型:
公司创始人:
+ 公司地址:
diff --git "a/src/main/resources/templates/test/enterprise/\346\267\273\345\212\240\344\274\201\344\270\232\351\241\265\351\235\242.html" "b/src/main/resources/templates/test/enterprise/\346\267\273\345\212\240\344\274\201\344\270\232\351\241\265\351\235\242.html" index 20a2db1e7bc7f2e8e041301d0442257f39a2979d..31cba9e6d6e1a51e1ce50d9e0fe01b90791caa53 100644 --- "a/src/main/resources/templates/test/enterprise/\346\267\273\345\212\240\344\274\201\344\270\232\351\241\265\351\235\242.html" +++ "b/src/main/resources/templates/test/enterprise/\346\267\273\345\212\240\344\274\201\344\270\232\351\241\265\351\235\242.html" @@ -14,6 +14,7 @@ 公司起始时间:
公司类型:
公司创始人:
+ 公司地址:
diff --git "a/src/main/resources/templates/test/station/\344\274\201\344\270\232\347\232\204\345\262\227\344\275\215\345\210\227\350\241\250.html" "b/src/main/resources/templates/test/station/\344\274\201\344\270\232\347\232\204\345\262\227\344\275\215\345\210\227\350\241\250.html" index 46d0408fbf901a3bd93f5f01e0b3b74eaa4c3fbd..45de1d4ff66dc78d313af0ffa629d1a7c8c7f28e 100644 --- "a/src/main/resources/templates/test/station/\344\274\201\344\270\232\347\232\204\345\262\227\344\275\215\345\210\227\350\241\250.html" +++ "b/src/main/resources/templates/test/station/\344\274\201\344\270\232\347\232\204\345\262\227\344\275\215\345\210\227\350\241\250.html" @@ -50,8 +50,8 @@ - 删除用户 - 修改用户 + 删除岗位 + 修改岗位 diff --git "a/src/main/resources/templates/test/station/\344\277\256\346\224\271\345\262\227\344\275\215.html" "b/src/main/resources/templates/test/station/\344\277\256\346\224\271\345\262\227\344\275\215.html" new file mode 100644 index 0000000000000000000000000000000000000000..b2e9b4a65056e1edc1497c52018100a8b93ba2fc --- /dev/null +++ "b/src/main/resources/templates/test/station/\344\277\256\346\224\271\345\262\227\344\275\215.html" @@ -0,0 +1,30 @@ + + + + + 修改岗位 + + +

修改岗位页面

+
+
+ + + + + + + + + +
+ 岗位名: +
+ +
+
+
+ + + + \ No newline at end of file diff --git "a/src/main/resources/templates/test/station/\346\237\245\350\257\242\346\211\200\346\234\211\345\262\227\344\275\215.html" "b/src/main/resources/templates/test/station/\346\237\245\350\257\242\346\211\200\346\234\211\345\262\227\344\275\215.html" new file mode 100644 index 0000000000000000000000000000000000000000..eba18c9785cb3b9090096715e890d3279c1f96f1 --- /dev/null +++ "b/src/main/resources/templates/test/station/\346\237\245\350\257\242\346\211\200\346\234\211\345\262\227\344\275\215.html" @@ -0,0 +1,53 @@ + + + + + 查询所有岗位 + + +添加岗位 + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + + +
+ + 序号岗位名岗位工资岗位工作部门名岗位所需人数学历要求工作天数生活补助五险一金操作
+ + + 删除岗位 + +
+ + \ No newline at end of file diff --git "a/src/main/resources/templates/test/station/\346\237\245\350\257\242\346\211\200\346\234\211\345\262\227\344\275\215\345\222\214\344\274\201\344\270\232\344\277\241\346\201\257.html" "b/src/main/resources/templates/test/station/\346\237\245\350\257\242\346\211\200\346\234\211\345\262\227\344\275\215\345\222\214\344\274\201\344\270\232\344\277\241\346\201\257.html" new file mode 100644 index 0000000000000000000000000000000000000000..73b00fcbf9ed243a72a5109b35cd88885dab7f7c --- /dev/null +++ "b/src/main/resources/templates/test/station/\346\237\245\350\257\242\346\211\200\346\234\211\345\262\227\344\275\215\345\222\214\344\274\201\344\270\232\344\277\241\346\201\257.html" @@ -0,0 +1,14 @@ + + + + + Title + + +
+ +
+ + + + \ No newline at end of file diff --git "a/src/main/resources/templates/test/station/\346\267\273\345\212\240\345\262\227\344\275\215.html" "b/src/main/resources/templates/test/station/\346\267\273\345\212\240\345\262\227\344\275\215.html" index 29bb3d27467b62a46aa8e525a3f41f5bdfa36cd3..7a3b781bdc5252eadb785b4fe75bfc4bde112857 100644 --- "a/src/main/resources/templates/test/station/\346\267\273\345\212\240\345\262\227\344\275\215.html" +++ "b/src/main/resources/templates/test/station/\346\267\273\345\212\240\345\262\227\344\275\215.html" @@ -6,61 +6,13 @@

添加岗位的页面

-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
-
-
+
+ 岗位序号:
+ 岗位名:
+ +
diff --git "a/src/main/resources/templates/test/user/\347\224\250\346\210\267\351\246\226\351\241\265.html" "b/src/main/resources/templates/test/user/\347\224\250\346\210\267\351\246\226\351\241\265.html" index 3da8aba09a3076805c8b07ad63a1e08bf1a9532b..98b65d0f7e230ccf59b0a53385a10559cbeefe56 100644 --- "a/src/main/resources/templates/test/user/\347\224\250\346\210\267\351\246\226\351\241\265.html" +++ "b/src/main/resources/templates/test/user/\347\224\250\346\210\267\351\246\226\351\241\265.html" @@ -6,12 +6,13 @@

用户首页

- 岗位列表 - 作为企业查看自己的岗位列表 - 作为企业查看自己的岗位列表 - 作为企业查看自己的岗位列表作为企业查看自己的岗位列表 + 作为企业查看自己的岗位列表 + + 查询所有岗位 + + 查询所有岗位和企业 \ No newline at end of file