diff --git a/ruoyi-szxc/src/main/java/com/ruoyi/szxc/controller/SzxcCsEmplyeesController.java b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/controller/SzxcCsEmplyeesController.java new file mode 100644 index 0000000..d67fca3 --- /dev/null +++ b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/controller/SzxcCsEmplyeesController.java @@ -0,0 +1,104 @@ +package com.ruoyi.szxc.controller; + +import java.util.List; +import javax.servlet.http.HttpServletResponse; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.PutMapping; +import org.springframework.web.bind.annotation.DeleteMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; +import com.ruoyi.common.annotation.Log; +import com.ruoyi.common.core.controller.BaseController; +import com.ruoyi.common.core.domain.AjaxResult; +import com.ruoyi.common.enums.BusinessType; +import com.ruoyi.szxc.domain.SzxcCsEmplyees; +import com.ruoyi.szxc.service.ISzxcCsEmplyeesService; +import com.ruoyi.common.utils.poi.ExcelUtil; +import com.ruoyi.common.core.page.TableDataInfo; + +/** + * 场所员工Controller + * + * @author hs + * @date 2024-03-28 + */ +@RestController +@RequestMapping("/szxc/emplyees") +public class SzxcCsEmplyeesController extends BaseController +{ + @Autowired + private ISzxcCsEmplyeesService szxcCsEmplyeesService; + + /** + * 查询场所员工列表 + */ + @PreAuthorize("@ss.hasPermi('szxc:emplyees:list')") + @GetMapping("/list") + public TableDataInfo list(SzxcCsEmplyees szxcCsEmplyees) + { + startPage(); + List list = szxcCsEmplyeesService.selectSzxcCsEmplyeesList(szxcCsEmplyees); + return getDataTable(list); + } + + /** + * 导出场所员工列表 + */ + @PreAuthorize("@ss.hasPermi('szxc:emplyees:export')") + @Log(title = "场所员工", businessType = BusinessType.EXPORT) + @PostMapping("/export") + public void export(HttpServletResponse response, SzxcCsEmplyees szxcCsEmplyees) + { + List list = szxcCsEmplyeesService.selectSzxcCsEmplyeesList(szxcCsEmplyees); + ExcelUtil util = new ExcelUtil(SzxcCsEmplyees.class); + util.exportExcel(response, list, "场所员工数据"); + } + + /** + * 获取场所员工详细信息 + */ + @PreAuthorize("@ss.hasPermi('szxc:emplyees:query')") + @GetMapping(value = "/{id}") + public AjaxResult getInfo(@PathVariable("id") Long id) + { + return success(szxcCsEmplyeesService.selectSzxcCsEmplyeesById(id)); + } + + /** + * 新增场所员工 + */ + @PreAuthorize("@ss.hasPermi('szxc:emplyees:add')") + @Log(title = "场所员工", businessType = BusinessType.INSERT) + @PostMapping + public AjaxResult add(@RequestBody SzxcCsEmplyees szxcCsEmplyees) + { + return toAjax(szxcCsEmplyeesService.insertSzxcCsEmplyees(szxcCsEmplyees)); + } + + /** + * 修改场所员工 + */ + @PreAuthorize("@ss.hasPermi('szxc:emplyees:edit')") + @Log(title = "场所员工", businessType = BusinessType.UPDATE) + @PutMapping + public AjaxResult edit(@RequestBody SzxcCsEmplyees szxcCsEmplyees) + { + return toAjax(szxcCsEmplyeesService.updateSzxcCsEmplyees(szxcCsEmplyees)); + } + + /** + * 删除场所员工 + */ + @PreAuthorize("@ss.hasPermi('szxc:emplyees:remove')") + @Log(title = "场所员工", businessType = BusinessType.DELETE) + @DeleteMapping("/{ids}") + public AjaxResult remove(@PathVariable Long[] ids) + { + return toAjax(szxcCsEmplyeesService.deleteSzxcCsEmplyeesByIds(ids)); + } +} diff --git a/ruoyi-szxc/src/main/java/com/ruoyi/szxc/controller/SzxcCsResponseController.java b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/controller/SzxcCsResponseController.java new file mode 100644 index 0000000..b512324 --- /dev/null +++ b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/controller/SzxcCsResponseController.java @@ -0,0 +1,104 @@ +package com.ruoyi.szxc.controller; + +import java.util.List; +import javax.servlet.http.HttpServletResponse; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.PutMapping; +import org.springframework.web.bind.annotation.DeleteMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; +import com.ruoyi.common.annotation.Log; +import com.ruoyi.common.core.controller.BaseController; +import com.ruoyi.common.core.domain.AjaxResult; +import com.ruoyi.common.enums.BusinessType; +import com.ruoyi.szxc.domain.SzxcCsResponse; +import com.ruoyi.szxc.service.ISzxcCsResponseService; +import com.ruoyi.common.utils.poi.ExcelUtil; +import com.ruoyi.common.core.page.TableDataInfo; + +/** + * 场所负责人Controller + * + * @author hs + * @date 2024-03-28 + */ +@RestController +@RequestMapping("/szxc/response") +public class SzxcCsResponseController extends BaseController +{ + @Autowired + private ISzxcCsResponseService szxcCsResponseService; + + /** + * 查询场所负责人列表 + */ + @PreAuthorize("@ss.hasPermi('szxc:response:list')") + @GetMapping("/list") + public TableDataInfo list(SzxcCsResponse szxcCsResponse) + { + startPage(); + List list = szxcCsResponseService.selectSzxcCsResponseList(szxcCsResponse); + return getDataTable(list); + } + + /** + * 导出场所负责人列表 + */ + @PreAuthorize("@ss.hasPermi('szxc:response:export')") + @Log(title = "场所负责人", businessType = BusinessType.EXPORT) + @PostMapping("/export") + public void export(HttpServletResponse response, SzxcCsResponse szxcCsResponse) + { + List list = szxcCsResponseService.selectSzxcCsResponseList(szxcCsResponse); + ExcelUtil util = new ExcelUtil(SzxcCsResponse.class); + util.exportExcel(response, list, "场所负责人数据"); + } + + /** + * 获取场所负责人详细信息 + */ + @PreAuthorize("@ss.hasPermi('szxc:response:query')") + @GetMapping(value = "/{id}") + public AjaxResult getInfo(@PathVariable("id") Long id) + { + return success(szxcCsResponseService.selectSzxcCsResponseById(id)); + } + + /** + * 新增场所负责人 + */ + @PreAuthorize("@ss.hasPermi('szxc:response:add')") + @Log(title = "场所负责人", businessType = BusinessType.INSERT) + @PostMapping + public AjaxResult add(@RequestBody SzxcCsResponse szxcCsResponse) + { + return toAjax(szxcCsResponseService.insertSzxcCsResponse(szxcCsResponse)); + } + + /** + * 修改场所负责人 + */ + @PreAuthorize("@ss.hasPermi('szxc:response:edit')") + @Log(title = "场所负责人", businessType = BusinessType.UPDATE) + @PutMapping + public AjaxResult edit(@RequestBody SzxcCsResponse szxcCsResponse) + { + return toAjax(szxcCsResponseService.updateSzxcCsResponse(szxcCsResponse)); + } + + /** + * 删除场所负责人 + */ + @PreAuthorize("@ss.hasPermi('szxc:response:remove')") + @Log(title = "场所负责人", businessType = BusinessType.DELETE) + @DeleteMapping("/{ids}") + public AjaxResult remove(@PathVariable Long[] ids) + { + return toAjax(szxcCsResponseService.deleteSzxcCsResponseByIds(ids)); + } +} diff --git a/ruoyi-szxc/src/main/java/com/ruoyi/szxc/controller/SzxcPlaceManageController.java b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/controller/SzxcPlaceManageController.java new file mode 100644 index 0000000..4b69ebf --- /dev/null +++ b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/controller/SzxcPlaceManageController.java @@ -0,0 +1,104 @@ +package com.ruoyi.szxc.controller; + +import java.util.List; +import javax.servlet.http.HttpServletResponse; +import org.springframework.security.access.prepost.PreAuthorize; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.PutMapping; +import org.springframework.web.bind.annotation.DeleteMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; +import com.ruoyi.common.annotation.Log; +import com.ruoyi.common.core.controller.BaseController; +import com.ruoyi.common.core.domain.AjaxResult; +import com.ruoyi.common.enums.BusinessType; +import com.ruoyi.szxc.domain.SzxcPlaceManage; +import com.ruoyi.szxc.service.ISzxcPlaceManageService; +import com.ruoyi.common.utils.poi.ExcelUtil; +import com.ruoyi.common.core.page.TableDataInfo; + +/** + * 场所管理Controller + * + * @author hs + * @date 2024-03-28 + */ +@RestController +@RequestMapping("/szxc/csmanage") +public class SzxcPlaceManageController extends BaseController +{ + @Autowired + private ISzxcPlaceManageService szxcPlaceManageService; + + /** + * 查询场所管理列表 + */ + @PreAuthorize("@ss.hasPermi('szxc:csmanage:list')") + @GetMapping("/list") + public TableDataInfo list(SzxcPlaceManage szxcPlaceManage) + { + startPage(); + List list = szxcPlaceManageService.selectSzxcPlaceManageList(szxcPlaceManage); + return getDataTable(list); + } + + /** + * 导出场所管理列表 + */ + @PreAuthorize("@ss.hasPermi('szxc:csmanage:export')") + @Log(title = "场所管理", businessType = BusinessType.EXPORT) + @PostMapping("/export") + public void export(HttpServletResponse response, SzxcPlaceManage szxcPlaceManage) + { + List list = szxcPlaceManageService.selectSzxcPlaceManageList(szxcPlaceManage); + ExcelUtil util = new ExcelUtil(SzxcPlaceManage.class); + util.exportExcel(response, list, "场所管理数据"); + } + + /** + * 获取场所管理详细信息 + */ + @PreAuthorize("@ss.hasPermi('szxc:csmanage:query')") + @GetMapping(value = "/{id}") + public AjaxResult getInfo(@PathVariable("id") Long id) + { + return success(szxcPlaceManageService.selectSzxcPlaceManageById(id)); + } + + /** + * 新增场所管理 + */ + @PreAuthorize("@ss.hasPermi('szxc:csmanage:add')") + @Log(title = "场所管理", businessType = BusinessType.INSERT) + @PostMapping + public AjaxResult add(@RequestBody SzxcPlaceManage szxcPlaceManage) + { + return toAjax(szxcPlaceManageService.insertSzxcPlaceManage(szxcPlaceManage)); + } + + /** + * 修改场所管理 + */ + @PreAuthorize("@ss.hasPermi('szxc:csmanage:edit')") + @Log(title = "场所管理", businessType = BusinessType.UPDATE) + @PutMapping + public AjaxResult edit(@RequestBody SzxcPlaceManage szxcPlaceManage) + { + return toAjax(szxcPlaceManageService.updateSzxcPlaceManage(szxcPlaceManage)); + } + + /** + * 删除场所管理 + */ + @PreAuthorize("@ss.hasPermi('szxc:csmanage:remove')") + @Log(title = "场所管理", businessType = BusinessType.DELETE) + @DeleteMapping("/{ids}") + public AjaxResult remove(@PathVariable Long[] ids) + { + return toAjax(szxcPlaceManageService.deleteSzxcPlaceManageByIds(ids)); + } +} diff --git a/ruoyi-szxc/src/main/java/com/ruoyi/szxc/domain/SzxcCsEmplyees.java b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/domain/SzxcCsEmplyees.java new file mode 100644 index 0000000..147fcc5 --- /dev/null +++ b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/domain/SzxcCsEmplyees.java @@ -0,0 +1,209 @@ +package com.ruoyi.szxc.domain; + +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.ruoyi.common.annotation.Excel; +import com.ruoyi.common.core.domain.BaseEntity; + +/** + * 场所员工对象 szxc_cs_emplyees + * + * @author hs + * @date 2024-03-28 + */ +public class SzxcCsEmplyees extends BaseEntity +{ + private static final long serialVersionUID = 1L; + + /** id */ + private Long id; + + /** 场所id */ + @Excel(name = "场所id") + private Long csId; + + /** 场所名称 */ + @Excel(name = "场所名称") + private String csName; + + /** 员工姓名 */ + @Excel(name = "员工姓名") + private String ygName; + + /** 手机号 */ + @Excel(name = "手机号") + private String phone; + + /** 身份证号 */ + @Excel(name = "身份证号") + private String cardId; + + /** 性别(0男 1女 2未知) */ + @Excel(name = "性别", readConverterExp = "0=男,1=女,2=未知") + private String sex; + + /** 是否党员(0是1否) */ + @Excel(name = "是否党员(0是1否)") + private String dyOrNot; + + /** 现居住地 */ + @Excel(name = "现居住地") + private String currentAddress; + + /** 省 */ + @Excel(name = "省") + private String province; + + /** 市 */ + @Excel(name = "市") + private String city; + + /** 县 */ + @Excel(name = "县") + private String county; + + /** 户籍地址 */ + @Excel(name = "户籍地址") + private String hjAddress; + + public void setId(Long id) + { + this.id = id; + } + + public Long getId() + { + return id; + } + public void setCsId(Long csId) + { + this.csId = csId; + } + + public Long getCsId() + { + return csId; + } + public void setCsName(String csName) + { + this.csName = csName; + } + + public String getCsName() + { + return csName; + } + public void setYgName(String ygName) + { + this.ygName = ygName; + } + + public String getYgName() + { + return ygName; + } + public void setPhone(String phone) + { + this.phone = phone; + } + + public String getPhone() + { + return phone; + } + public void setCardId(String cardId) + { + this.cardId = cardId; + } + + public String getCardId() + { + return cardId; + } + public void setSex(String sex) + { + this.sex = sex; + } + + public String getSex() + { + return sex; + } + public void setDyOrNot(String dyOrNot) + { + this.dyOrNot = dyOrNot; + } + + public String getDyOrNot() + { + return dyOrNot; + } + public void setCurrentAddress(String currentAddress) + { + this.currentAddress = currentAddress; + } + + public String getCurrentAddress() + { + return currentAddress; + } + public void setProvince(String province) + { + this.province = province; + } + + public String getProvince() + { + return province; + } + public void setCity(String city) + { + this.city = city; + } + + public String getCity() + { + return city; + } + public void setCounty(String county) + { + this.county = county; + } + + public String getCounty() + { + return county; + } + public void setHjAddress(String hjAddress) + { + this.hjAddress = hjAddress; + } + + public String getHjAddress() + { + return hjAddress; + } + + @Override + public String toString() { + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) + .append("id", getId()) + .append("csId", getCsId()) + .append("csName", getCsName()) + .append("ygName", getYgName()) + .append("phone", getPhone()) + .append("cardId", getCardId()) + .append("sex", getSex()) + .append("dyOrNot", getDyOrNot()) + .append("currentAddress", getCurrentAddress()) + .append("province", getProvince()) + .append("city", getCity()) + .append("county", getCounty()) + .append("hjAddress", getHjAddress()) + .append("createBy", getCreateBy()) + .append("createTime", getCreateTime()) + .append("updateBy", getUpdateBy()) + .append("updateTime", getUpdateTime()) + .toString(); + } +} diff --git a/ruoyi-szxc/src/main/java/com/ruoyi/szxc/domain/SzxcCsResponse.java b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/domain/SzxcCsResponse.java new file mode 100644 index 0000000..facdb4a --- /dev/null +++ b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/domain/SzxcCsResponse.java @@ -0,0 +1,223 @@ +package com.ruoyi.szxc.domain; + +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.ruoyi.common.annotation.Excel; +import com.ruoyi.common.core.domain.BaseEntity; + +/** + * 场所负责人对象 szxc_cs_response + * + * @author hs + * @date 2024-03-28 + */ +public class SzxcCsResponse extends BaseEntity +{ + private static final long serialVersionUID = 1L; + + /** id */ + private Long id; + + /** 场所id */ + @Excel(name = "场所id") + private Long csId; + + /** 场所名称 */ + @Excel(name = "场所名称") + private String csName; + + /** 负责人类型 */ + @Excel(name = "负责人类型") + private String fzrType; + + /** 负责人姓名 */ + @Excel(name = "负责人姓名") + private String fzrName; + + /** 手机号 */ + @Excel(name = "手机号") + private String phone; + + /** 身份证号 */ + @Excel(name = "身份证号") + private String cardId; + + /** 性别(0男 1女 2未知) */ + @Excel(name = "性别", readConverterExp = "0=男,1=女,2=未知") + private String sex; + + /** 是否党员(0是1否) */ + @Excel(name = "是否党员(0是1否)") + private String dyOrNot; + + /** 现居住地 */ + @Excel(name = "现居住地") + private String currentAddress; + + /** 省 */ + @Excel(name = "省") + private String province; + + /** 市 */ + @Excel(name = "市") + private String city; + + /** 县 */ + @Excel(name = "县") + private String county; + + /** 户籍地址 */ + @Excel(name = "户籍地址") + private String hjAddress; + + public void setId(Long id) + { + this.id = id; + } + + public Long getId() + { + return id; + } + public void setCsId(Long csId) + { + this.csId = csId; + } + + public Long getCsId() + { + return csId; + } + public void setCsName(String csName) + { + this.csName = csName; + } + + public String getCsName() + { + return csName; + } + public void setFzrType(String fzrType) + { + this.fzrType = fzrType; + } + + public String getFzrType() + { + return fzrType; + } + public void setFzrName(String fzrName) + { + this.fzrName = fzrName; + } + + public String getFzrName() + { + return fzrName; + } + public void setPhone(String phone) + { + this.phone = phone; + } + + public String getPhone() + { + return phone; + } + public void setCardId(String cardId) + { + this.cardId = cardId; + } + + public String getCardId() + { + return cardId; + } + public void setSex(String sex) + { + this.sex = sex; + } + + public String getSex() + { + return sex; + } + public void setDyOrNot(String dyOrNot) + { + this.dyOrNot = dyOrNot; + } + + public String getDyOrNot() + { + return dyOrNot; + } + public void setCurrentAddress(String currentAddress) + { + this.currentAddress = currentAddress; + } + + public String getCurrentAddress() + { + return currentAddress; + } + public void setProvince(String province) + { + this.province = province; + } + + public String getProvince() + { + return province; + } + public void setCity(String city) + { + this.city = city; + } + + public String getCity() + { + return city; + } + public void setCounty(String county) + { + this.county = county; + } + + public String getCounty() + { + return county; + } + public void setHjAddress(String hjAddress) + { + this.hjAddress = hjAddress; + } + + public String getHjAddress() + { + return hjAddress; + } + + @Override + public String toString() { + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) + .append("id", getId()) + .append("csId", getCsId()) + .append("csName", getCsName()) + .append("fzrType", getFzrType()) + .append("fzrName", getFzrName()) + .append("phone", getPhone()) + .append("cardId", getCardId()) + .append("sex", getSex()) + .append("dyOrNot", getDyOrNot()) + .append("currentAddress", getCurrentAddress()) + .append("province", getProvince()) + .append("city", getCity()) + .append("county", getCounty()) + .append("hjAddress", getHjAddress()) + .append("createBy", getCreateBy()) + .append("createTime", getCreateTime()) + .append("updateBy", getUpdateBy()) + .append("updateTime", getUpdateTime()) + .toString(); + } +} diff --git a/ruoyi-szxc/src/main/java/com/ruoyi/szxc/domain/SzxcLdInfo.java b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/domain/SzxcLdInfo.java index fb9539f..811a714 100644 --- a/ruoyi-szxc/src/main/java/com/ruoyi/szxc/domain/SzxcLdInfo.java +++ b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/domain/SzxcLdInfo.java @@ -7,9 +7,9 @@ import com.ruoyi.common.core.domain.BaseEntity; /** * 楼栋信息对象 szxc_ld_info - * + * * @author hs - * @date 2024-03-16 + * @date 2024-03-28 */ public class SzxcLdInfo extends BaseEntity { @@ -18,20 +18,24 @@ public class SzxcLdInfo extends BaseEntity /** id */ private Long id; - /** 所属小区 */ - @Excel(name = "所属小区") + /** 所属小区id */ + @Excel(name = "所属小区id") private Long xqId; + /** 小区名称 */ + @Excel(name = "小区名称") + private String xqName; + /** 楼栋名称 */ @Excel(name = "楼栋名称") private String ldName; - /** 类型(0小区楼栋1独立房2其它) */ - @Excel(name = "类型(0小区楼栋1独立房2其它)") - private String xqType; + /** 楼栋类型(0小区楼栋1独立房2其它) */ + @Excel(name = "楼栋类型(0小区楼栋1独立房2其它)") + private String ldType; - /** 类别字典 */ - @Excel(name = "类别字典") + /** 楼栋类别字典 */ + @Excel(name = "楼栋类别字典") private String ldSort; /** 楼栋结构字典 */ @@ -70,129 +74,138 @@ public class SzxcLdInfo extends BaseEntity @Excel(name = "创建者ID") private Long userId; - public void setId(Long id) + public void setId(Long id) { this.id = id; } - public Long getId() + public Long getId() { return id; } - public void setXqId(Long xqId) + public void setXqId(Long xqId) { this.xqId = xqId; } - public Long getXqId() + public Long getXqId() { return xqId; } - public void setLdName(String ldName) + public void setXqName(String xqName) + { + this.xqName = xqName; + } + + public String getXqName() + { + return xqName; + } + public void setLdName(String ldName) { this.ldName = ldName; } - public String getLdName() + public String getLdName() { return ldName; } - public void setXqType(String xqType) + public void setLdType(String ldType) { - this.xqType = xqType; + this.ldType = ldType; } - public String getXqType() + public String getLdType() { - return xqType; + return ldType; } - public void setLdSort(String ldSort) + public void setLdSort(String ldSort) { this.ldSort = ldSort; } - public String getLdSort() + public String getLdSort() { return ldSort; } - public void setLdjg(String ldjg) + public void setLdjg(String ldjg) { this.ldjg = ldjg; } - public String getLdjg() + public String getLdjg() { return ldjg; } - public void setQnfs(String qnfs) + public void setQnfs(String qnfs) { this.qnfs = qnfs; } - public String getQnfs() + public String getQnfs() { return qnfs; } - public void setLcNum(Long lcNum) + public void setLcNum(Long lcNum) { this.lcNum = lcNum; } - public Long getLcNum() + public Long getLcNum() { return lcNum; } - public void setUnitNum(Long unitNum) + public void setUnitNum(Long unitNum) { this.unitNum = unitNum; } - public Long getUnitNum() + public Long getUnitNum() { return unitNum; } - public void setHuNum(Long huNum) + public void setHuNum(Long huNum) { this.huNum = huNum; } - public Long getHuNum() + public Long getHuNum() { return huNum; } - public void setLdDescribe(String ldDescribe) + public void setLdDescribe(String ldDescribe) { this.ldDescribe = ldDescribe; } - public String getLdDescribe() + public String getLdDescribe() { return ldDescribe; } - public void setDeptId(Long deptId) + public void setDeptId(Long deptId) { this.deptId = deptId; } - public Long getDeptId() + public Long getDeptId() { return deptId; } - public void setDeptName(String deptName) + public void setDeptName(String deptName) { this.deptName = deptName; } - public String getDeptName() + public String getDeptName() { return deptName; } - public void setUserId(Long userId) + public void setUserId(Long userId) { this.userId = userId; } - public Long getUserId() + public Long getUserId() { return userId; } @@ -200,24 +213,25 @@ public class SzxcLdInfo extends BaseEntity @Override public String toString() { return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) - .append("id", getId()) - .append("xqId", getXqId()) - .append("ldName", getLdName()) - .append("xqType", getXqType()) - .append("ldSort", getLdSort()) - .append("ldjg", getLdjg()) - .append("qnfs", getQnfs()) - .append("lcNum", getLcNum()) - .append("unitNum", getUnitNum()) - .append("huNum", getHuNum()) - .append("ldDescribe", getLdDescribe()) - .append("createBy", getCreateBy()) - .append("createTime", getCreateTime()) - .append("updateBy", getUpdateBy()) - .append("updateTime", getUpdateTime()) - .append("deptId", getDeptId()) - .append("deptName", getDeptName()) - .append("userId", getUserId()) - .toString(); + .append("id", getId()) + .append("xqId", getXqId()) + .append("xqName", getXqName()) + .append("ldName", getLdName()) + .append("ldType", getLdType()) + .append("ldSort", getLdSort()) + .append("ldjg", getLdjg()) + .append("qnfs", getQnfs()) + .append("lcNum", getLcNum()) + .append("unitNum", getUnitNum()) + .append("huNum", getHuNum()) + .append("ldDescribe", getLdDescribe()) + .append("createBy", getCreateBy()) + .append("createTime", getCreateTime()) + .append("updateBy", getUpdateBy()) + .append("updateTime", getUpdateTime()) + .append("deptId", getDeptId()) + .append("deptName", getDeptName()) + .append("userId", getUserId()) + .toString(); } } diff --git a/ruoyi-szxc/src/main/java/com/ruoyi/szxc/domain/SzxcPlaceManage.java b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/domain/SzxcPlaceManage.java new file mode 100644 index 0000000..e7decd0 --- /dev/null +++ b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/domain/SzxcPlaceManage.java @@ -0,0 +1,283 @@ +package com.ruoyi.szxc.domain; + +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.ruoyi.common.annotation.Excel; +import com.ruoyi.common.core.domain.BaseEntity; + +/** + * 场所管理对象 szxc_place_manage + * + * @author hs + * @date 2024-03-28 + */ +public class SzxcPlaceManage extends BaseEntity +{ + private static final long serialVersionUID = 1L; + + /** id */ + private Long id; + + /** 场所名称 */ + @Excel(name = "场所名称") + private String csName; + + /** 行业类别(字典) */ + @Excel(name = "行业类别(字典)") + private String hyType; + + /** 类型(字典) */ + @Excel(name = "类型(字典)") + private String csType; + + /** 场所地址 */ + @Excel(name = "场所地址") + private String csAddress; + + /** 员工数量 */ + @Excel(name = "员工数量") + private Long employeeNum; + + /** 商住一体(0是1否) */ + @Excel(name = "商住一体(0是1否)") + private String szyt; + + /** 房屋类型(字典) */ + @Excel(name = "房屋类型(字典)") + private String fwType; + + /** 法人姓名 */ + @Excel(name = "法人姓名") + private String frName; + + /** 成立日期 */ + @JsonFormat(pattern = "yyyy-MM-dd") + @Excel(name = "成立日期", width = 30, dateFormat = "yyyy-MM-dd") + private Date clDate; + + /** 营业期限 */ + @Excel(name = "营业期限") + private String yyqx; + + /** 统一社会信用代码 */ + @Excel(name = "统一社会信用代码") + private String tyshxyCode; + + /** 营业执照 */ + @Excel(name = "营业执照") + private String yyzzPicture; + + /** 关联房屋id */ + @Excel(name = "关联房屋id") + private Long glfwId; + + /** 关联房屋名称 */ + @Excel(name = "关联房屋名称") + private String glfwName; + + /** 部门id */ + @Excel(name = "部门id") + private Long deptId; + + /** 所属网格 */ + @Excel(name = "所属网格") + private String deptName; + + /** 创建者ID */ + @Excel(name = "创建者ID") + private Long userId; + + public void setId(Long id) + { + this.id = id; + } + + public Long getId() + { + return id; + } + public void setCsName(String csName) + { + this.csName = csName; + } + + public String getCsName() + { + return csName; + } + public void setHyType(String hyType) + { + this.hyType = hyType; + } + + public String getHyType() + { + return hyType; + } + public void setCsType(String csType) + { + this.csType = csType; + } + + public String getCsType() + { + return csType; + } + public void setCsAddress(String csAddress) + { + this.csAddress = csAddress; + } + + public String getCsAddress() + { + return csAddress; + } + public void setEmployeeNum(Long employeeNum) + { + this.employeeNum = employeeNum; + } + + public Long getEmployeeNum() + { + return employeeNum; + } + public void setSzyt(String szyt) + { + this.szyt = szyt; + } + + public String getSzyt() + { + return szyt; + } + public void setFwType(String fwType) + { + this.fwType = fwType; + } + + public String getFwType() + { + return fwType; + } + public void setFrName(String frName) + { + this.frName = frName; + } + + public String getFrName() + { + return frName; + } + public void setClDate(Date clDate) + { + this.clDate = clDate; + } + + public Date getClDate() + { + return clDate; + } + public void setYyqx(String yyqx) + { + this.yyqx = yyqx; + } + + public String getYyqx() + { + return yyqx; + } + public void setTyshxyCode(String tyshxyCode) + { + this.tyshxyCode = tyshxyCode; + } + + public String getTyshxyCode() + { + return tyshxyCode; + } + public void setYyzzPicture(String yyzzPicture) + { + this.yyzzPicture = yyzzPicture; + } + + public String getYyzzPicture() + { + return yyzzPicture; + } + public void setGlfwId(Long glfwId) + { + this.glfwId = glfwId; + } + + public Long getGlfwId() + { + return glfwId; + } + public void setGlfwName(String glfwName) + { + this.glfwName = glfwName; + } + + public String getGlfwName() + { + return glfwName; + } + public void setDeptId(Long deptId) + { + this.deptId = deptId; + } + + public Long getDeptId() + { + return deptId; + } + public void setDeptName(String deptName) + { + this.deptName = deptName; + } + + public String getDeptName() + { + return deptName; + } + public void setUserId(Long userId) + { + this.userId = userId; + } + + public Long getUserId() + { + return userId; + } + + @Override + public String toString() { + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) + .append("id", getId()) + .append("csName", getCsName()) + .append("hyType", getHyType()) + .append("csType", getCsType()) + .append("csAddress", getCsAddress()) + .append("employeeNum", getEmployeeNum()) + .append("szyt", getSzyt()) + .append("fwType", getFwType()) + .append("frName", getFrName()) + .append("clDate", getClDate()) + .append("yyqx", getYyqx()) + .append("tyshxyCode", getTyshxyCode()) + .append("yyzzPicture", getYyzzPicture()) + .append("glfwId", getGlfwId()) + .append("glfwName", getGlfwName()) + .append("remark", getRemark()) + .append("createBy", getCreateBy()) + .append("createTime", getCreateTime()) + .append("updateBy", getUpdateBy()) + .append("updateTime", getUpdateTime()) + .append("deptId", getDeptId()) + .append("deptName", getDeptName()) + .append("userId", getUserId()) + .toString(); + } +} diff --git a/ruoyi-szxc/src/main/java/com/ruoyi/szxc/domain/SzxcXqInfo.java b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/domain/SzxcXqInfo.java index 7741356..ce86f78 100644 --- a/ruoyi-szxc/src/main/java/com/ruoyi/szxc/domain/SzxcXqInfo.java +++ b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/domain/SzxcXqInfo.java @@ -1,17 +1,18 @@ package com.ruoyi.szxc.domain; -import java.util.Date; import com.fasterxml.jackson.annotation.JsonFormat; -import org.apache.commons.lang3.builder.ToStringBuilder; -import org.apache.commons.lang3.builder.ToStringStyle; import com.ruoyi.common.annotation.Excel; import com.ruoyi.common.core.domain.BaseEntity; +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; + +import java.util.Date; /** * 小区信息对象 szxc_xq_info - * + * * @author hs - * @date 2024-03-16 + * @date 2024-03-28 */ public class SzxcXqInfo extends BaseEntity { @@ -20,6 +21,10 @@ public class SzxcXqInfo extends BaseEntity /** id */ private Long id; + /** 小区名称 */ + @Excel(name = "小区名称") + private String name; + /** 类型(0老旧1新2片区散户) */ @Excel(name = "类型(0老旧1新2片区散户)") private String xqType; @@ -73,129 +78,138 @@ public class SzxcXqInfo extends BaseEntity @Excel(name = "创建者ID") private Long userId; - public void setId(Long id) + public void setId(Long id) { this.id = id; } - public Long getId() + public Long getId() { return id; } - public void setXqType(String xqType) + public void setName(String name) + { + this.name = name; + } + + public String getName() + { + return name; + } + public void setXqType(String xqType) { this.xqType = xqType; } - public String getXqType() + public String getXqType() { return xqType; } - public void setLdNum(Long ldNum) + public void setLdNum(Long ldNum) { this.ldNum = ldNum; } - public Long getLdNum() + public Long getLdNum() { return ldNum; } - public void setJzArea(String jzArea) + public void setJzArea(String jzArea) { this.jzArea = jzArea; } - public String getJzArea() + public String getJzArea() { return jzArea; } - public void setZdArea(String zdArea) + public void setZdArea(String zdArea) { this.zdArea = zdArea; } - public String getZdArea() + public String getZdArea() { return zdArea; } - public void setWyType(String wyType) + public void setWyType(String wyType) { this.wyType = wyType; } - public String getWyType() + public String getWyType() { return wyType; } - public void setWyResponse(String wyResponse) + public void setWyResponse(String wyResponse) { this.wyResponse = wyResponse; } - public String getWyResponse() + public String getWyResponse() { return wyResponse; } - public void setWyPhone(String wyPhone) + public void setWyPhone(String wyPhone) { this.wyPhone = wyPhone; } - public String getWyPhone() + public String getWyPhone() { return wyPhone; } - public void setXqAddress(String xqAddress) + public void setXqAddress(String xqAddress) { this.xqAddress = xqAddress; } - public String getXqAddress() + public String getXqAddress() { return xqAddress; } - public void setBuildDate(Date buildDate) + public void setBuildDate(Date buildDate) { this.buildDate = buildDate; } - public Date getBuildDate() + public Date getBuildDate() { return buildDate; } - public void setXqDescribe(String xqDescribe) + public void setXqDescribe(String xqDescribe) { this.xqDescribe = xqDescribe; } - public String getXqDescribe() + public String getXqDescribe() { return xqDescribe; } - public void setDeptId(Long deptId) + public void setDeptId(Long deptId) { this.deptId = deptId; } - public Long getDeptId() + public Long getDeptId() { return deptId; } - public void setDeptName(String deptName) + public void setDeptName(String deptName) { this.deptName = deptName; } - public String getDeptName() + public String getDeptName() { return deptName; } - public void setUserId(Long userId) + public void setUserId(Long userId) { this.userId = userId; } - public Long getUserId() + public Long getUserId() { return userId; } @@ -203,24 +217,25 @@ public class SzxcXqInfo extends BaseEntity @Override public String toString() { return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) - .append("id", getId()) - .append("xqType", getXqType()) - .append("ldNum", getLdNum()) - .append("jzArea", getJzArea()) - .append("zdArea", getZdArea()) - .append("wyType", getWyType()) - .append("wyResponse", getWyResponse()) - .append("wyPhone", getWyPhone()) - .append("xqAddress", getXqAddress()) - .append("buildDate", getBuildDate()) - .append("xqDescribe", getXqDescribe()) - .append("createBy", getCreateBy()) - .append("createTime", getCreateTime()) - .append("updateBy", getUpdateBy()) - .append("updateTime", getUpdateTime()) - .append("deptId", getDeptId()) - .append("deptName", getDeptName()) - .append("userId", getUserId()) - .toString(); + .append("id", getId()) + .append("name", getName()) + .append("xqType", getXqType()) + .append("ldNum", getLdNum()) + .append("jzArea", getJzArea()) + .append("zdArea", getZdArea()) + .append("wyType", getWyType()) + .append("wyResponse", getWyResponse()) + .append("wyPhone", getWyPhone()) + .append("xqAddress", getXqAddress()) + .append("buildDate", getBuildDate()) + .append("xqDescribe", getXqDescribe()) + .append("createBy", getCreateBy()) + .append("createTime", getCreateTime()) + .append("updateBy", getUpdateBy()) + .append("updateTime", getUpdateTime()) + .append("deptId", getDeptId()) + .append("deptName", getDeptName()) + .append("userId", getUserId()) + .toString(); } } diff --git a/ruoyi-szxc/src/main/java/com/ruoyi/szxc/mapper/SzxcCsEmplyeesMapper.java b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/mapper/SzxcCsEmplyeesMapper.java new file mode 100644 index 0000000..b41cc06 --- /dev/null +++ b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/mapper/SzxcCsEmplyeesMapper.java @@ -0,0 +1,62 @@ +package com.ruoyi.szxc.mapper; + +import com.ruoyi.szxc.domain.SzxcCsEmplyees; + +import java.util.List; + +/** + * 场所员工Mapper接口 + * + * @author hs + * @date 2024-03-28 + */ +public interface SzxcCsEmplyeesMapper +{ + /** + * 查询场所员工 + * + * @param id 场所员工主键 + * @return 场所员工 + */ + public SzxcCsEmplyees selectSzxcCsEmplyeesById(Long id); + + /** + * 查询场所员工列表 + * + * @param szxcCsEmplyees 场所员工 + * @return 场所员工集合 + */ + public List selectSzxcCsEmplyeesList(SzxcCsEmplyees szxcCsEmplyees); + + /** + * 新增场所员工 + * + * @param szxcCsEmplyees 场所员工 + * @return 结果 + */ + public int insertSzxcCsEmplyees(SzxcCsEmplyees szxcCsEmplyees); + + /** + * 修改场所员工 + * + * @param szxcCsEmplyees 场所员工 + * @return 结果 + */ + public int updateSzxcCsEmplyees(SzxcCsEmplyees szxcCsEmplyees); + + /** + * 删除场所员工 + * + * @param id 场所员工主键 + * @return 结果 + */ + public int deleteSzxcCsEmplyeesById(Long id); + + /** + * 批量删除场所员工 + * + * @param ids 需要删除的数据主键集合 + * @return 结果 + */ + public int deleteSzxcCsEmplyeesByIds(Long[] ids); +} diff --git a/ruoyi-szxc/src/main/java/com/ruoyi/szxc/mapper/SzxcCsResponseMapper.java b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/mapper/SzxcCsResponseMapper.java new file mode 100644 index 0000000..3c6af4b --- /dev/null +++ b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/mapper/SzxcCsResponseMapper.java @@ -0,0 +1,61 @@ +package com.ruoyi.szxc.mapper; + +import java.util.List; +import com.ruoyi.szxc.domain.SzxcCsResponse; + +/** + * 场所负责人Mapper接口 + * + * @author hs + * @date 2024-03-28 + */ +public interface SzxcCsResponseMapper +{ + /** + * 查询场所负责人 + * + * @param id 场所负责人主键 + * @return 场所负责人 + */ + public SzxcCsResponse selectSzxcCsResponseById(Long id); + + /** + * 查询场所负责人列表 + * + * @param szxcCsResponse 场所负责人 + * @return 场所负责人集合 + */ + public List selectSzxcCsResponseList(SzxcCsResponse szxcCsResponse); + + /** + * 新增场所负责人 + * + * @param szxcCsResponse 场所负责人 + * @return 结果 + */ + public int insertSzxcCsResponse(SzxcCsResponse szxcCsResponse); + + /** + * 修改场所负责人 + * + * @param szxcCsResponse 场所负责人 + * @return 结果 + */ + public int updateSzxcCsResponse(SzxcCsResponse szxcCsResponse); + + /** + * 删除场所负责人 + * + * @param id 场所负责人主键 + * @return 结果 + */ + public int deleteSzxcCsResponseById(Long id); + + /** + * 批量删除场所负责人 + * + * @param ids 需要删除的数据主键集合 + * @return 结果 + */ + public int deleteSzxcCsResponseByIds(Long[] ids); +} diff --git a/ruoyi-szxc/src/main/java/com/ruoyi/szxc/mapper/SzxcPlaceManageMapper.java b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/mapper/SzxcPlaceManageMapper.java new file mode 100644 index 0000000..d9d19a9 --- /dev/null +++ b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/mapper/SzxcPlaceManageMapper.java @@ -0,0 +1,61 @@ +package com.ruoyi.szxc.mapper; + +import java.util.List; +import com.ruoyi.szxc.domain.SzxcPlaceManage; + +/** + * 场所管理Mapper接口 + * + * @author hs + * @date 2024-03-28 + */ +public interface SzxcPlaceManageMapper +{ + /** + * 查询场所管理 + * + * @param id 场所管理主键 + * @return 场所管理 + */ + public SzxcPlaceManage selectSzxcPlaceManageById(Long id); + + /** + * 查询场所管理列表 + * + * @param szxcPlaceManage 场所管理 + * @return 场所管理集合 + */ + public List selectSzxcPlaceManageList(SzxcPlaceManage szxcPlaceManage); + + /** + * 新增场所管理 + * + * @param szxcPlaceManage 场所管理 + * @return 结果 + */ + public int insertSzxcPlaceManage(SzxcPlaceManage szxcPlaceManage); + + /** + * 修改场所管理 + * + * @param szxcPlaceManage 场所管理 + * @return 结果 + */ + public int updateSzxcPlaceManage(SzxcPlaceManage szxcPlaceManage); + + /** + * 删除场所管理 + * + * @param id 场所管理主键 + * @return 结果 + */ + public int deleteSzxcPlaceManageById(Long id); + + /** + * 批量删除场所管理 + * + * @param ids 需要删除的数据主键集合 + * @return 结果 + */ + public int deleteSzxcPlaceManageByIds(Long[] ids); +} diff --git a/ruoyi-szxc/src/main/java/com/ruoyi/szxc/service/ISzxcCsEmplyeesService.java b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/service/ISzxcCsEmplyeesService.java new file mode 100644 index 0000000..1a4b7df --- /dev/null +++ b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/service/ISzxcCsEmplyeesService.java @@ -0,0 +1,62 @@ +package com.ruoyi.szxc.service; + +import com.ruoyi.szxc.domain.SzxcCsEmplyees; + +import java.util.List; + +/** + * 场所员工Service接口 + * + * @author hs + * @date 2024-03-28 + */ +public interface ISzxcCsEmplyeesService +{ + /** + * 查询场所员工 + * + * @param id 场所员工主键 + * @return 场所员工 + */ + public SzxcCsEmplyees selectSzxcCsEmplyeesById(Long id); + + /** + * 查询场所员工列表 + * + * @param szxcCsEmplyees 场所员工 + * @return 场所员工集合 + */ + public List selectSzxcCsEmplyeesList(SzxcCsEmplyees szxcCsEmplyees); + + /** + * 新增场所员工 + * + * @param szxcCsEmplyees 场所员工 + * @return 结果 + */ + public int insertSzxcCsEmplyees(SzxcCsEmplyees szxcCsEmplyees); + + /** + * 修改场所员工 + * + * @param szxcCsEmplyees 场所员工 + * @return 结果 + */ + public int updateSzxcCsEmplyees(SzxcCsEmplyees szxcCsEmplyees); + + /** + * 批量删除场所员工 + * + * @param ids 需要删除的场所员工主键集合 + * @return 结果 + */ + public int deleteSzxcCsEmplyeesByIds(Long[] ids); + + /** + * 删除场所员工信息 + * + * @param id 场所员工主键 + * @return 结果 + */ + public int deleteSzxcCsEmplyeesById(Long id); +} diff --git a/ruoyi-szxc/src/main/java/com/ruoyi/szxc/service/ISzxcCsResponseService.java b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/service/ISzxcCsResponseService.java new file mode 100644 index 0000000..da2d7ef --- /dev/null +++ b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/service/ISzxcCsResponseService.java @@ -0,0 +1,61 @@ +package com.ruoyi.szxc.service; + +import java.util.List; +import com.ruoyi.szxc.domain.SzxcCsResponse; + +/** + * 场所负责人Service接口 + * + * @author hs + * @date 2024-03-28 + */ +public interface ISzxcCsResponseService +{ + /** + * 查询场所负责人 + * + * @param id 场所负责人主键 + * @return 场所负责人 + */ + public SzxcCsResponse selectSzxcCsResponseById(Long id); + + /** + * 查询场所负责人列表 + * + * @param szxcCsResponse 场所负责人 + * @return 场所负责人集合 + */ + public List selectSzxcCsResponseList(SzxcCsResponse szxcCsResponse); + + /** + * 新增场所负责人 + * + * @param szxcCsResponse 场所负责人 + * @return 结果 + */ + public int insertSzxcCsResponse(SzxcCsResponse szxcCsResponse); + + /** + * 修改场所负责人 + * + * @param szxcCsResponse 场所负责人 + * @return 结果 + */ + public int updateSzxcCsResponse(SzxcCsResponse szxcCsResponse); + + /** + * 批量删除场所负责人 + * + * @param ids 需要删除的场所负责人主键集合 + * @return 结果 + */ + public int deleteSzxcCsResponseByIds(Long[] ids); + + /** + * 删除场所负责人信息 + * + * @param id 场所负责人主键 + * @return 结果 + */ + public int deleteSzxcCsResponseById(Long id); +} diff --git a/ruoyi-szxc/src/main/java/com/ruoyi/szxc/service/ISzxcPlaceManageService.java b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/service/ISzxcPlaceManageService.java new file mode 100644 index 0000000..1bbbf21 --- /dev/null +++ b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/service/ISzxcPlaceManageService.java @@ -0,0 +1,61 @@ +package com.ruoyi.szxc.service; + +import java.util.List; +import com.ruoyi.szxc.domain.SzxcPlaceManage; + +/** + * 场所管理Service接口 + * + * @author hs + * @date 2024-03-28 + */ +public interface ISzxcPlaceManageService +{ + /** + * 查询场所管理 + * + * @param id 场所管理主键 + * @return 场所管理 + */ + public SzxcPlaceManage selectSzxcPlaceManageById(Long id); + + /** + * 查询场所管理列表 + * + * @param szxcPlaceManage 场所管理 + * @return 场所管理集合 + */ + public List selectSzxcPlaceManageList(SzxcPlaceManage szxcPlaceManage); + + /** + * 新增场所管理 + * + * @param szxcPlaceManage 场所管理 + * @return 结果 + */ + public int insertSzxcPlaceManage(SzxcPlaceManage szxcPlaceManage); + + /** + * 修改场所管理 + * + * @param szxcPlaceManage 场所管理 + * @return 结果 + */ + public int updateSzxcPlaceManage(SzxcPlaceManage szxcPlaceManage); + + /** + * 批量删除场所管理 + * + * @param ids 需要删除的场所管理主键集合 + * @return 结果 + */ + public int deleteSzxcPlaceManageByIds(Long[] ids); + + /** + * 删除场所管理信息 + * + * @param id 场所管理主键 + * @return 结果 + */ + public int deleteSzxcPlaceManageById(Long id); +} diff --git a/ruoyi-szxc/src/main/java/com/ruoyi/szxc/service/impl/SzxcCsEmplyeesServiceImpl.java b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/service/impl/SzxcCsEmplyeesServiceImpl.java new file mode 100644 index 0000000..ad0cf82 --- /dev/null +++ b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/service/impl/SzxcCsEmplyeesServiceImpl.java @@ -0,0 +1,97 @@ +package com.ruoyi.szxc.service.impl; + +import com.ruoyi.common.utils.DateUtils; +import com.ruoyi.szxc.domain.SzxcCsEmplyees; +import com.ruoyi.szxc.mapper.SzxcCsEmplyeesMapper; +import com.ruoyi.szxc.service.ISzxcCsEmplyeesService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.List; + +/** + * 场所员工Service业务层处理 + * + * @author hs + * @date 2024-03-28 + */ +@Service +public class SzxcCsEmplyeesServiceImpl implements ISzxcCsEmplyeesService +{ + @Autowired + private SzxcCsEmplyeesMapper szxcCsEmplyeesMapper; + + /** + * 查询场所员工 + * + * @param id 场所员工主键 + * @return 场所员工 + */ + @Override + public SzxcCsEmplyees selectSzxcCsEmplyeesById(Long id) + { + return szxcCsEmplyeesMapper.selectSzxcCsEmplyeesById(id); + } + + /** + * 查询场所员工列表 + * + * @param szxcCsEmplyees 场所员工 + * @return 场所员工 + */ + @Override + public List selectSzxcCsEmplyeesList(SzxcCsEmplyees szxcCsEmplyees) + { + return szxcCsEmplyeesMapper.selectSzxcCsEmplyeesList(szxcCsEmplyees); + } + + /** + * 新增场所员工 + * + * @param szxcCsEmplyees 场所员工 + * @return 结果 + */ + @Override + public int insertSzxcCsEmplyees(SzxcCsEmplyees szxcCsEmplyees) + { + szxcCsEmplyees.setCreateTime(DateUtils.getNowDate()); + return szxcCsEmplyeesMapper.insertSzxcCsEmplyees(szxcCsEmplyees); + } + + /** + * 修改场所员工 + * + * @param szxcCsEmplyees 场所员工 + * @return 结果 + */ + @Override + public int updateSzxcCsEmplyees(SzxcCsEmplyees szxcCsEmplyees) + { + szxcCsEmplyees.setUpdateTime(DateUtils.getNowDate()); + return szxcCsEmplyeesMapper.updateSzxcCsEmplyees(szxcCsEmplyees); + } + + /** + * 批量删除场所员工 + * + * @param ids 需要删除的场所员工主键 + * @return 结果 + */ + @Override + public int deleteSzxcCsEmplyeesByIds(Long[] ids) + { + return szxcCsEmplyeesMapper.deleteSzxcCsEmplyeesByIds(ids); + } + + /** + * 删除场所员工信息 + * + * @param id 场所员工主键 + * @return 结果 + */ + @Override + public int deleteSzxcCsEmplyeesById(Long id) + { + return szxcCsEmplyeesMapper.deleteSzxcCsEmplyeesById(id); + } +} diff --git a/ruoyi-szxc/src/main/java/com/ruoyi/szxc/service/impl/SzxcCsResponseServiceImpl.java b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/service/impl/SzxcCsResponseServiceImpl.java new file mode 100644 index 0000000..953b3ce --- /dev/null +++ b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/service/impl/SzxcCsResponseServiceImpl.java @@ -0,0 +1,96 @@ +package com.ruoyi.szxc.service.impl; + +import java.util.List; +import com.ruoyi.common.utils.DateUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import com.ruoyi.szxc.mapper.SzxcCsResponseMapper; +import com.ruoyi.szxc.domain.SzxcCsResponse; +import com.ruoyi.szxc.service.ISzxcCsResponseService; + +/** + * 场所负责人Service业务层处理 + * + * @author hs + * @date 2024-03-28 + */ +@Service +public class SzxcCsResponseServiceImpl implements ISzxcCsResponseService +{ + @Autowired + private SzxcCsResponseMapper szxcCsResponseMapper; + + /** + * 查询场所负责人 + * + * @param id 场所负责人主键 + * @return 场所负责人 + */ + @Override + public SzxcCsResponse selectSzxcCsResponseById(Long id) + { + return szxcCsResponseMapper.selectSzxcCsResponseById(id); + } + + /** + * 查询场所负责人列表 + * + * @param szxcCsResponse 场所负责人 + * @return 场所负责人 + */ + @Override + public List selectSzxcCsResponseList(SzxcCsResponse szxcCsResponse) + { + return szxcCsResponseMapper.selectSzxcCsResponseList(szxcCsResponse); + } + + /** + * 新增场所负责人 + * + * @param szxcCsResponse 场所负责人 + * @return 结果 + */ + @Override + public int insertSzxcCsResponse(SzxcCsResponse szxcCsResponse) + { + szxcCsResponse.setCreateTime(DateUtils.getNowDate()); + return szxcCsResponseMapper.insertSzxcCsResponse(szxcCsResponse); + } + + /** + * 修改场所负责人 + * + * @param szxcCsResponse 场所负责人 + * @return 结果 + */ + @Override + public int updateSzxcCsResponse(SzxcCsResponse szxcCsResponse) + { + szxcCsResponse.setUpdateTime(DateUtils.getNowDate()); + return szxcCsResponseMapper.updateSzxcCsResponse(szxcCsResponse); + } + + /** + * 批量删除场所负责人 + * + * @param ids 需要删除的场所负责人主键 + * @return 结果 + */ + @Override + public int deleteSzxcCsResponseByIds(Long[] ids) + { + return szxcCsResponseMapper.deleteSzxcCsResponseByIds(ids); + } + + /** + * 删除场所负责人信息 + * + * @param id 场所负责人主键 + * @return 结果 + */ + @Override + public int deleteSzxcCsResponseById(Long id) + { + return szxcCsResponseMapper.deleteSzxcCsResponseById(id); + } +} diff --git a/ruoyi-szxc/src/main/java/com/ruoyi/szxc/service/impl/SzxcPlaceManageServiceImpl.java b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/service/impl/SzxcPlaceManageServiceImpl.java new file mode 100644 index 0000000..9fb1c64 --- /dev/null +++ b/ruoyi-szxc/src/main/java/com/ruoyi/szxc/service/impl/SzxcPlaceManageServiceImpl.java @@ -0,0 +1,96 @@ +package com.ruoyi.szxc.service.impl; + +import java.util.List; +import com.ruoyi.common.utils.DateUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import com.ruoyi.szxc.mapper.SzxcPlaceManageMapper; +import com.ruoyi.szxc.domain.SzxcPlaceManage; +import com.ruoyi.szxc.service.ISzxcPlaceManageService; + +/** + * 场所管理Service业务层处理 + * + * @author hs + * @date 2024-03-28 + */ +@Service +public class SzxcPlaceManageServiceImpl implements ISzxcPlaceManageService +{ + @Autowired + private SzxcPlaceManageMapper szxcPlaceManageMapper; + + /** + * 查询场所管理 + * + * @param id 场所管理主键 + * @return 场所管理 + */ + @Override + public SzxcPlaceManage selectSzxcPlaceManageById(Long id) + { + return szxcPlaceManageMapper.selectSzxcPlaceManageById(id); + } + + /** + * 查询场所管理列表 + * + * @param szxcPlaceManage 场所管理 + * @return 场所管理 + */ + @Override + public List selectSzxcPlaceManageList(SzxcPlaceManage szxcPlaceManage) + { + return szxcPlaceManageMapper.selectSzxcPlaceManageList(szxcPlaceManage); + } + + /** + * 新增场所管理 + * + * @param szxcPlaceManage 场所管理 + * @return 结果 + */ + @Override + public int insertSzxcPlaceManage(SzxcPlaceManage szxcPlaceManage) + { + szxcPlaceManage.setCreateTime(DateUtils.getNowDate()); + return szxcPlaceManageMapper.insertSzxcPlaceManage(szxcPlaceManage); + } + + /** + * 修改场所管理 + * + * @param szxcPlaceManage 场所管理 + * @return 结果 + */ + @Override + public int updateSzxcPlaceManage(SzxcPlaceManage szxcPlaceManage) + { + szxcPlaceManage.setUpdateTime(DateUtils.getNowDate()); + return szxcPlaceManageMapper.updateSzxcPlaceManage(szxcPlaceManage); + } + + /** + * 批量删除场所管理 + * + * @param ids 需要删除的场所管理主键 + * @return 结果 + */ + @Override + public int deleteSzxcPlaceManageByIds(Long[] ids) + { + return szxcPlaceManageMapper.deleteSzxcPlaceManageByIds(ids); + } + + /** + * 删除场所管理信息 + * + * @param id 场所管理主键 + * @return 结果 + */ + @Override + public int deleteSzxcPlaceManageById(Long id) + { + return szxcPlaceManageMapper.deleteSzxcPlaceManageById(id); + } +} diff --git a/ruoyi-szxc/src/main/resources/mapper/szxc/SzxcCsEmplyeesMapper.xml b/ruoyi-szxc/src/main/resources/mapper/szxc/SzxcCsEmplyeesMapper.xml new file mode 100644 index 0000000..0d6dbc2 --- /dev/null +++ b/ruoyi-szxc/src/main/resources/mapper/szxc/SzxcCsEmplyeesMapper.xml @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + select id, cs_id, cs_name, yg_name, phone, card_id, sex, dy_or_not, current_address, province, city, county, hj_address, create_by, create_time, update_by, update_time from szxc_cs_emplyees + + + + + + + + insert into szxc_cs_emplyees + + cs_id, + cs_name, + yg_name, + phone, + card_id, + sex, + dy_or_not, + current_address, + province, + city, + county, + hj_address, + create_by, + create_time, + update_by, + update_time, + + + #{csId}, + #{csName}, + #{ygName}, + #{phone}, + #{cardId}, + #{sex}, + #{dyOrNot}, + #{currentAddress}, + #{province}, + #{city}, + #{county}, + #{hjAddress}, + #{createBy}, + #{createTime}, + #{updateBy}, + #{updateTime}, + + + + + update szxc_cs_emplyees + + cs_id = #{csId}, + cs_name = #{csName}, + yg_name = #{ygName}, + phone = #{phone}, + card_id = #{cardId}, + sex = #{sex}, + dy_or_not = #{dyOrNot}, + current_address = #{currentAddress}, + province = #{province}, + city = #{city}, + county = #{county}, + hj_address = #{hjAddress}, + create_by = #{createBy}, + create_time = #{createTime}, + update_by = #{updateBy}, + update_time = #{updateTime}, + + where id = #{id} + + + + delete from szxc_cs_emplyees where id = #{id} + + + + delete from szxc_cs_emplyees where id in + + #{id} + + + \ No newline at end of file diff --git a/ruoyi-szxc/src/main/resources/mapper/szxc/SzxcCsResponseMapper.xml b/ruoyi-szxc/src/main/resources/mapper/szxc/SzxcCsResponseMapper.xml new file mode 100644 index 0000000..4cd8c9e --- /dev/null +++ b/ruoyi-szxc/src/main/resources/mapper/szxc/SzxcCsResponseMapper.xml @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + select id, cs_id, cs_name, fzr_type, fzr_name, phone, card_id, sex, dy_or_not, current_address, province, city, county, hj_address, create_by, create_time, update_by, update_time from szxc_cs_response + + + + + + + + insert into szxc_cs_response + + cs_id, + cs_name, + fzr_type, + fzr_name, + phone, + card_id, + sex, + dy_or_not, + current_address, + province, + city, + county, + hj_address, + create_by, + create_time, + update_by, + update_time, + + + #{csId}, + #{csName}, + #{fzrType}, + #{fzrName}, + #{phone}, + #{cardId}, + #{sex}, + #{dyOrNot}, + #{currentAddress}, + #{province}, + #{city}, + #{county}, + #{hjAddress}, + #{createBy}, + #{createTime}, + #{updateBy}, + #{updateTime}, + + + + + update szxc_cs_response + + cs_id = #{csId}, + cs_name = #{csName}, + fzr_type = #{fzrType}, + fzr_name = #{fzrName}, + phone = #{phone}, + card_id = #{cardId}, + sex = #{sex}, + dy_or_not = #{dyOrNot}, + current_address = #{currentAddress}, + province = #{province}, + city = #{city}, + county = #{county}, + hj_address = #{hjAddress}, + create_by = #{createBy}, + create_time = #{createTime}, + update_by = #{updateBy}, + update_time = #{updateTime}, + + where id = #{id} + + + + delete from szxc_cs_response where id = #{id} + + + + delete from szxc_cs_response where id in + + #{id} + + + \ No newline at end of file diff --git a/ruoyi-szxc/src/main/resources/mapper/szxc/SzxcLdInfoMapper.xml b/ruoyi-szxc/src/main/resources/mapper/szxc/SzxcLdInfoMapper.xml index 95c4847..f2b0717 100644 --- a/ruoyi-szxc/src/main/resources/mapper/szxc/SzxcLdInfoMapper.xml +++ b/ruoyi-szxc/src/main/resources/mapper/szxc/SzxcLdInfoMapper.xml @@ -1,14 +1,15 @@ + PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" + "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> - + + - + @@ -26,15 +27,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" - select id, xq_id, ld_name, xq_type, ld_sort, ldjg, qnfs, lc_num, unit_num, hu_num, ld_describe, create_by, create_time, update_by, update_time, dept_id, dept_name, user_id from szxc_ld_info + select id, xq_id, xq_name, ld_name, ld_type, ld_sort, ldjg, qnfs, lc_num, unit_num, hu_num, ld_describe, create_by, create_time, update_by, update_time, dept_id, dept_name, user_id from szxc_ld_info - + - + insert into szxc_ld_info xq_id, + xq_name, ld_name, - xq_type, + ld_type, ld_sort, ldjg, qnfs, @@ -73,11 +76,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" dept_id, dept_name, user_id, - + #{xqId}, + #{xqName}, #{ldName}, - #{xqType}, + #{ldType}, #{ldSort}, #{ldjg}, #{qnfs}, @@ -92,15 +96,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" #{deptId}, #{deptName}, #{userId}, - + update szxc_ld_info xq_id = #{xqId}, + xq_name = #{xqName}, ld_name = #{ldName}, - xq_type = #{xqType}, + ld_type = #{ldType}, ld_sort = #{ldSort}, ldjg = #{ldjg}, qnfs = #{qnfs}, @@ -124,7 +129,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" - delete from szxc_ld_info where id in + delete from szxc_ld_info where id in #{id} diff --git a/ruoyi-szxc/src/main/resources/mapper/szxc/SzxcPlaceManageMapper.xml b/ruoyi-szxc/src/main/resources/mapper/szxc/SzxcPlaceManageMapper.xml new file mode 100644 index 0000000..1e90afe --- /dev/null +++ b/ruoyi-szxc/src/main/resources/mapper/szxc/SzxcPlaceManageMapper.xml @@ -0,0 +1,156 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + select id, cs_name, hy_type, cs_type, cs_address, employee_num, szyt, fw_type, fr_name, cl_date, yyqx, tyshxy_code, yyzz_picture, glfw_id, glfw_name, remark, create_by, create_time, update_by, update_time, dept_id, dept_name, user_id from szxc_place_manage + + + + + + + + insert into szxc_place_manage + + cs_name, + hy_type, + cs_type, + cs_address, + employee_num, + szyt, + fw_type, + fr_name, + cl_date, + yyqx, + tyshxy_code, + yyzz_picture, + glfw_id, + glfw_name, + remark, + create_by, + create_time, + update_by, + update_time, + dept_id, + dept_name, + user_id, + + + #{csName}, + #{hyType}, + #{csType}, + #{csAddress}, + #{employeeNum}, + #{szyt}, + #{fwType}, + #{frName}, + #{clDate}, + #{yyqx}, + #{tyshxyCode}, + #{yyzzPicture}, + #{glfwId}, + #{glfwName}, + #{remark}, + #{createBy}, + #{createTime}, + #{updateBy}, + #{updateTime}, + #{deptId}, + #{deptName}, + #{userId}, + + + + + update szxc_place_manage + + cs_name = #{csName}, + hy_type = #{hyType}, + cs_type = #{csType}, + cs_address = #{csAddress}, + employee_num = #{employeeNum}, + szyt = #{szyt}, + fw_type = #{fwType}, + fr_name = #{frName}, + cl_date = #{clDate}, + yyqx = #{yyqx}, + tyshxy_code = #{tyshxyCode}, + yyzz_picture = #{yyzzPicture}, + glfw_id = #{glfwId}, + glfw_name = #{glfwName}, + remark = #{remark}, + create_by = #{createBy}, + create_time = #{createTime}, + update_by = #{updateBy}, + update_time = #{updateTime}, + dept_id = #{deptId}, + dept_name = #{deptName}, + user_id = #{userId}, + + where id = #{id} + + + + delete from szxc_place_manage where id = #{id} + + + + delete from szxc_place_manage where id in + + #{id} + + + \ No newline at end of file diff --git a/ruoyi-szxc/src/main/resources/mapper/szxc/SzxcXqInfoMapper.xml b/ruoyi-szxc/src/main/resources/mapper/szxc/SzxcXqInfoMapper.xml index 1e4b445..966f0b7 100644 --- a/ruoyi-szxc/src/main/resources/mapper/szxc/SzxcXqInfoMapper.xml +++ b/ruoyi-szxc/src/main/resources/mapper/szxc/SzxcXqInfoMapper.xml @@ -1,11 +1,12 @@ + PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" + "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> - + + @@ -26,12 +27,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" - select id, xq_type, ld_num, jz_area, zd_area, wy_type, wy_response, wy_phone, xq_address, build_date, xq_describe, create_by, create_time, update_by, update_time, dept_id, dept_name, user_id from szxc_xq_info + select id, name, xq_type, ld_num, jz_area, zd_area, wy_type, wy_response, wy_phone, xq_address, build_date, xq_describe, create_by, create_time, update_by, update_time, dept_id, dept_name, user_id from szxc_xq_info - + - + insert into szxc_xq_info + name, xq_type, ld_num, jz_area, @@ -73,8 +76,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" dept_id, dept_name, user_id, - + + #{name}, #{xqType}, #{ldNum}, #{jzArea}, @@ -92,12 +96,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" #{deptId}, #{deptName}, #{userId}, - + update szxc_xq_info + name = #{name}, xq_type = #{xqType}, ld_num = #{ldNum}, jz_area = #{jzArea}, @@ -124,7 +129,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" - delete from szxc_xq_info where id in + delete from szxc_xq_info where id in #{id} diff --git a/ruoyi-ui/src/api/szxc/csmanage.js b/ruoyi-ui/src/api/szxc/csmanage.js new file mode 100644 index 0000000..013f635 --- /dev/null +++ b/ruoyi-ui/src/api/szxc/csmanage.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询场所管理列表 +export function listCsmanage(query) { + return request({ + url: '/szxc/csmanage/list', + method: 'get', + params: query + }) +} + +// 查询场所管理详细 +export function getCsmanage(id) { + return request({ + url: '/szxc/csmanage/' + id, + method: 'get' + }) +} + +// 新增场所管理 +export function addCsmanage(data) { + return request({ + url: '/szxc/csmanage', + method: 'post', + data: data + }) +} + +// 修改场所管理 +export function updateCsmanage(data) { + return request({ + url: '/szxc/csmanage', + method: 'put', + data: data + }) +} + +// 删除场所管理 +export function delCsmanage(id) { + return request({ + url: '/szxc/csmanage/' + id, + method: 'delete' + }) +} diff --git a/ruoyi-ui/src/api/szxc/emplyees.js b/ruoyi-ui/src/api/szxc/emplyees.js new file mode 100644 index 0000000..b9fa4da --- /dev/null +++ b/ruoyi-ui/src/api/szxc/emplyees.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询场所员工列表 +export function listEmplyees(query) { + return request({ + url: '/szxc/emplyees/list', + method: 'get', + params: query + }) +} + +// 查询场所员工详细 +export function getEmplyees(id) { + return request({ + url: '/szxc/emplyees/' + id, + method: 'get' + }) +} + +// 新增场所员工 +export function addEmplyees(data) { + return request({ + url: '/szxc/emplyees', + method: 'post', + data: data + }) +} + +// 修改场所员工 +export function updateEmplyees(data) { + return request({ + url: '/szxc/emplyees', + method: 'put', + data: data + }) +} + +// 删除场所员工 +export function delEmplyees(id) { + return request({ + url: '/szxc/emplyees/' + id, + method: 'delete' + }) +} diff --git a/ruoyi-ui/src/api/szxc/response.js b/ruoyi-ui/src/api/szxc/response.js new file mode 100644 index 0000000..af7fac6 --- /dev/null +++ b/ruoyi-ui/src/api/szxc/response.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询场所负责人列表 +export function listResponse(query) { + return request({ + url: '/szxc/response/list', + method: 'get', + params: query + }) +} + +// 查询场所负责人详细 +export function getResponse(id) { + return request({ + url: '/szxc/response/' + id, + method: 'get' + }) +} + +// 新增场所负责人 +export function addResponse(data) { + return request({ + url: '/szxc/response', + method: 'post', + data: data + }) +} + +// 修改场所负责人 +export function updateResponse(data) { + return request({ + url: '/szxc/response', + method: 'put', + data: data + }) +} + +// 删除场所负责人 +export function delResponse(id) { + return request({ + url: '/szxc/response/' + id, + method: 'delete' + }) +} diff --git a/ruoyi-ui/src/views/szxc/csmanage/index.vue b/ruoyi-ui/src/views/szxc/csmanage/index.vue new file mode 100644 index 0000000..d1f9daf --- /dev/null +++ b/ruoyi-ui/src/views/szxc/csmanage/index.vue @@ -0,0 +1,457 @@ + + + diff --git a/ruoyi-ui/src/views/szxc/emplyees/index.vue b/ruoyi-ui/src/views/szxc/emplyees/index.vue new file mode 100644 index 0000000..e6fb437 --- /dev/null +++ b/ruoyi-ui/src/views/szxc/emplyees/index.vue @@ -0,0 +1,395 @@ + + + diff --git a/ruoyi-ui/src/views/szxc/response/index.vue b/ruoyi-ui/src/views/szxc/response/index.vue new file mode 100644 index 0000000..ed6c419 --- /dev/null +++ b/ruoyi-ui/src/views/szxc/response/index.vue @@ -0,0 +1,398 @@ + + +