Explorar el Código

ljx:新增企业分类和价格指数初始代码

ljx hace 1 mes
padre
commit
cefe1d17be

+ 11 - 1
enteprise-admin/src/main/java/com/enteprise/enterprise/domain/Enterprise.java

@@ -30,7 +30,17 @@ public class Enterprise extends BaseEntity
     @Excel(name = "行业代码")
     private String code;
 
-    public void setId(Long id) 
+    private Long typeNum;
+
+    public Long getTypeNum() {
+        return typeNum;
+    }
+
+    public void setTypeNum(Long typeNum) {
+        this.typeNum = typeNum;
+    }
+
+    public void setId(Long id)
     {
         this.id = id;
     }

+ 66 - 0
enteprise-admin/src/main/java/com/enteprise/enterprise/dto/EnterpriseDto.java

@@ -0,0 +1,66 @@
+package com.enteprise.enterprise.dto;
+
+import com.enteprise.common.annotation.Excel;
+
+public class EnterpriseDto {
+    private Long id;
+
+    /** 企业名称 */
+    @Excel(name = "企业名称")
+    private String enterpriseName;
+
+    /** 坐落地 */
+    @Excel(name = "坐落地")
+    private String location;
+
+    /** 行业代码 */
+    @Excel(name = "行业代码")
+    private String code;
+
+    private String typeName;
+
+    public String getTypeName() {
+        return typeName;
+    }
+
+    public void setTypeName(String typeName) {
+        this.typeName = typeName;
+    }
+
+    public void setId(Long id)
+    {
+        this.id = id;
+    }
+
+    public Long getId()
+    {
+        return id;
+    }
+    public void setEnterpriseName(String enterpriseName)
+    {
+        this.enterpriseName = enterpriseName;
+    }
+
+    public String getEnterpriseName()
+    {
+        return enterpriseName;
+    }
+    public void setLocation(String location)
+    {
+        this.location = location;
+    }
+
+    public String getLocation()
+    {
+        return location;
+    }
+    public void setCode(String code)
+    {
+        this.code = code;
+    }
+
+    public String getCode()
+    {
+        return code;
+    }
+}

+ 104 - 0
enteprise-admin/src/main/java/com/enteprise/etype/controller/EnterpriseTypeController.java

@@ -0,0 +1,104 @@
+package com.enteprise.etype.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.enteprise.common.annotation.Log;
+import com.enteprise.common.core.controller.BaseController;
+import com.enteprise.common.core.domain.AjaxResult;
+import com.enteprise.common.enums.BusinessType;
+import com.enteprise.etype.domain.EnterpriseType;
+import com.enteprise.etype.service.IEnterpriseTypeService;
+import com.enteprise.common.utils.poi.ExcelUtil;
+import com.enteprise.common.core.page.TableDataInfo;
+
+/**
+ * etypeController
+ * 
+ * @author ljx
+ * @date 2025-02-07
+ */
+@RestController
+@RequestMapping("/etype/etype")
+public class EnterpriseTypeController extends BaseController
+{
+    @Autowired
+    private IEnterpriseTypeService enterpriseTypeService;
+
+    /**
+     * 查询etype列表
+     */
+    @PreAuthorize("@ss.hasPermi('etype:etype:list')")
+    @GetMapping("/list")
+    public TableDataInfo list(EnterpriseType enterpriseType)
+    {
+        startPage();
+        List<EnterpriseType> list = enterpriseTypeService.selectEnterpriseTypeList(enterpriseType);
+        return getDataTable(list);
+    }
+
+    /**
+     * 导出etype列表
+     */
+    @PreAuthorize("@ss.hasPermi('etype:etype:export')")
+    @Log(title = "etype", businessType = BusinessType.EXPORT)
+    @PostMapping("/export")
+    public void export(HttpServletResponse response, EnterpriseType enterpriseType)
+    {
+        List<EnterpriseType> list = enterpriseTypeService.selectEnterpriseTypeList(enterpriseType);
+        ExcelUtil<EnterpriseType> util = new ExcelUtil<EnterpriseType>(EnterpriseType.class);
+        util.exportExcel(response, list, "etype数据");
+    }
+
+    /**
+     * 获取etype详细信息
+     */
+    @PreAuthorize("@ss.hasPermi('etype:etype:query')")
+    @GetMapping(value = "/{number}")
+    public AjaxResult getInfo(@PathVariable("number") Long number)
+    {
+        return success(enterpriseTypeService.selectEnterpriseTypeByNumber(number));
+    }
+
+    /**
+     * 新增etype
+     */
+    @PreAuthorize("@ss.hasPermi('etype:etype:add')")
+    @Log(title = "etype", businessType = BusinessType.INSERT)
+    @PostMapping
+    public AjaxResult add(@RequestBody EnterpriseType enterpriseType)
+    {
+        return toAjax(enterpriseTypeService.insertEnterpriseType(enterpriseType));
+    }
+
+    /**
+     * 修改etype
+     */
+    @PreAuthorize("@ss.hasPermi('etype:etype:edit')")
+    @Log(title = "etype", businessType = BusinessType.UPDATE)
+    @PutMapping
+    public AjaxResult edit(@RequestBody EnterpriseType enterpriseType)
+    {
+        return toAjax(enterpriseTypeService.updateEnterpriseType(enterpriseType));
+    }
+
+    /**
+     * 删除etype
+     */
+    @PreAuthorize("@ss.hasPermi('etype:etype:remove')")
+    @Log(title = "etype", businessType = BusinessType.DELETE)
+	@DeleteMapping("/{numbers}")
+    public AjaxResult remove(@PathVariable Long[] numbers)
+    {
+        return toAjax(enterpriseTypeService.deleteEnterpriseTypeByNumbers(numbers));
+    }
+}

+ 52 - 0
enteprise-admin/src/main/java/com/enteprise/etype/domain/EnterpriseType.java

@@ -0,0 +1,52 @@
+package com.enteprise.etype.domain;
+
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+import com.enteprise.common.annotation.Excel;
+import com.enteprise.common.core.domain.BaseEntity;
+
+/**
+ * etype对象 enterprise_type
+ * 
+ * @author ljx
+ * @date 2025-02-07
+ */
+public class EnterpriseType extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** 分类编码 */
+    @Excel(name = "分类编码")
+    private Long number;
+
+    /** 分类名称 */
+    @Excel(name = "分类名称")
+    private String name;
+
+    public void setNumber(Long number) 
+    {
+        this.number = number;
+    }
+
+    public Long getNumber() 
+    {
+        return number;
+    }
+    public void setName(String name)
+    {
+        this.name = name;
+    }
+
+    public String getName()
+    {
+        return name;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("number", getNumber())
+            .append("name", getName())
+            .toString();
+    }
+}

+ 61 - 0
enteprise-admin/src/main/java/com/enteprise/etype/mapper/EnterpriseTypeMapper.java

@@ -0,0 +1,61 @@
+package com.enteprise.etype.mapper;
+
+import java.util.List;
+import com.enteprise.etype.domain.EnterpriseType;
+
+/**
+ * etypeMapper接口
+ * 
+ * @author ljx
+ * @date 2025-02-07
+ */
+public interface EnterpriseTypeMapper 
+{
+    /**
+     * 查询etype
+     * 
+     * @param number etype主键
+     * @return etype
+     */
+    public EnterpriseType selectEnterpriseTypeByNumber(Long number);
+
+    /**
+     * 查询etype列表
+     * 
+     * @param enterpriseType etype
+     * @return etype集合
+     */
+    public List<EnterpriseType> selectEnterpriseTypeList(EnterpriseType enterpriseType);
+
+    /**
+     * 新增etype
+     * 
+     * @param enterpriseType etype
+     * @return 结果
+     */
+    public int insertEnterpriseType(EnterpriseType enterpriseType);
+
+    /**
+     * 修改etype
+     * 
+     * @param enterpriseType etype
+     * @return 结果
+     */
+    public int updateEnterpriseType(EnterpriseType enterpriseType);
+
+    /**
+     * 删除etype
+     * 
+     * @param number etype主键
+     * @return 结果
+     */
+    public int deleteEnterpriseTypeByNumber(Long number);
+
+    /**
+     * 批量删除etype
+     * 
+     * @param numbers 需要删除的数据主键集合
+     * @return 结果
+     */
+    public int deleteEnterpriseTypeByNumbers(Long[] numbers);
+}

+ 61 - 0
enteprise-admin/src/main/java/com/enteprise/etype/service/IEnterpriseTypeService.java

@@ -0,0 +1,61 @@
+package com.enteprise.etype.service;
+
+import java.util.List;
+import com.enteprise.etype.domain.EnterpriseType;
+
+/**
+ * etypeService接口
+ * 
+ * @author ljx
+ * @date 2025-02-07
+ */
+public interface IEnterpriseTypeService 
+{
+    /**
+     * 查询etype
+     * 
+     * @param number etype主键
+     * @return etype
+     */
+    public EnterpriseType selectEnterpriseTypeByNumber(Long number);
+
+    /**
+     * 查询etype列表
+     * 
+     * @param enterpriseType etype
+     * @return etype集合
+     */
+    public List<EnterpriseType> selectEnterpriseTypeList(EnterpriseType enterpriseType);
+
+    /**
+     * 新增etype
+     * 
+     * @param enterpriseType etype
+     * @return 结果
+     */
+    public int insertEnterpriseType(EnterpriseType enterpriseType);
+
+    /**
+     * 修改etype
+     * 
+     * @param enterpriseType etype
+     * @return 结果
+     */
+    public int updateEnterpriseType(EnterpriseType enterpriseType);
+
+    /**
+     * 批量删除etype
+     * 
+     * @param numbers 需要删除的etype主键集合
+     * @return 结果
+     */
+    public int deleteEnterpriseTypeByNumbers(Long[] numbers);
+
+    /**
+     * 删除etype信息
+     * 
+     * @param number etype主键
+     * @return 结果
+     */
+    public int deleteEnterpriseTypeByNumber(Long number);
+}

+ 93 - 0
enteprise-admin/src/main/java/com/enteprise/etype/service/impl/EnterpriseTypeServiceImpl.java

@@ -0,0 +1,93 @@
+package com.enteprise.etype.service.impl;
+
+import java.util.List;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import com.enteprise.etype.mapper.EnterpriseTypeMapper;
+import com.enteprise.etype.domain.EnterpriseType;
+import com.enteprise.etype.service.IEnterpriseTypeService;
+
+/**
+ * etypeService业务层处理
+ * 
+ * @author ljx
+ * @date 2025-02-07
+ */
+@Service
+public class EnterpriseTypeServiceImpl implements IEnterpriseTypeService 
+{
+    @Autowired
+    private EnterpriseTypeMapper enterpriseTypeMapper;
+
+    /**
+     * 查询etype
+     * 
+     * @param number etype主键
+     * @return etype
+     */
+    @Override
+    public EnterpriseType selectEnterpriseTypeByNumber(Long number)
+    {
+        return enterpriseTypeMapper.selectEnterpriseTypeByNumber(number);
+    }
+
+    /**
+     * 查询etype列表
+     * 
+     * @param enterpriseType etype
+     * @return etype
+     */
+    @Override
+    public List<EnterpriseType> selectEnterpriseTypeList(EnterpriseType enterpriseType)
+    {
+        return enterpriseTypeMapper.selectEnterpriseTypeList(enterpriseType);
+    }
+
+    /**
+     * 新增etype
+     * 
+     * @param enterpriseType etype
+     * @return 结果
+     */
+    @Override
+    public int insertEnterpriseType(EnterpriseType enterpriseType)
+    {
+        return enterpriseTypeMapper.insertEnterpriseType(enterpriseType);
+    }
+
+    /**
+     * 修改etype
+     * 
+     * @param enterpriseType etype
+     * @return 结果
+     */
+    @Override
+    public int updateEnterpriseType(EnterpriseType enterpriseType)
+    {
+        return enterpriseTypeMapper.updateEnterpriseType(enterpriseType);
+    }
+
+    /**
+     * 批量删除etype
+     * 
+     * @param numbers 需要删除的etype主键
+     * @return 结果
+     */
+    @Override
+    public int deleteEnterpriseTypeByNumbers(Long[] numbers)
+    {
+        return enterpriseTypeMapper.deleteEnterpriseTypeByNumbers(numbers);
+    }
+
+    /**
+     * 删除etype信息
+     * 
+     * @param number etype主键
+     * @return 结果
+     */
+    @Override
+    public int deleteEnterpriseTypeByNumber(Long number)
+    {
+        return enterpriseTypeMapper.deleteEnterpriseTypeByNumber(number);
+    }
+}

+ 104 - 0
enteprise-admin/src/main/java/com/enteprise/priceindex/controller/PriceIndexController.java

@@ -0,0 +1,104 @@
+package com.enteprise.priceindex.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.enteprise.common.annotation.Log;
+import com.enteprise.common.core.controller.BaseController;
+import com.enteprise.common.core.domain.AjaxResult;
+import com.enteprise.common.enums.BusinessType;
+import com.enteprise.priceindex.domain.PriceIndex;
+import com.enteprise.priceindex.service.IPriceIndexService;
+import com.enteprise.common.utils.poi.ExcelUtil;
+import com.enteprise.common.core.page.TableDataInfo;
+
+/**
+ * priceindexController
+ * 
+ * @author ljx
+ * @date 2025-02-07
+ */
+@RestController
+@RequestMapping("/priceindex/priceindex")
+public class PriceIndexController extends BaseController
+{
+    @Autowired
+    private IPriceIndexService priceIndexService;
+
+    /**
+     * 查询priceindex列表
+     */
+    @PreAuthorize("@ss.hasPermi('priceindex:priceindex:list')")
+    @GetMapping("/list")
+    public TableDataInfo list(PriceIndex priceIndex)
+    {
+        startPage();
+        List<PriceIndex> list = priceIndexService.selectPriceIndexList(priceIndex);
+        return getDataTable(list);
+    }
+
+    /**
+     * 导出priceindex列表
+     */
+    @PreAuthorize("@ss.hasPermi('priceindex:priceindex:export')")
+    @Log(title = "priceindex", businessType = BusinessType.EXPORT)
+    @PostMapping("/export")
+    public void export(HttpServletResponse response, PriceIndex priceIndex)
+    {
+        List<PriceIndex> list = priceIndexService.selectPriceIndexList(priceIndex);
+        ExcelUtil<PriceIndex> util = new ExcelUtil<PriceIndex>(PriceIndex.class);
+        util.exportExcel(response, list, "priceindex数据");
+    }
+
+    /**
+     * 获取priceindex详细信息
+     */
+    @PreAuthorize("@ss.hasPermi('priceindex:priceindex:query')")
+    @GetMapping(value = "/{id}")
+    public AjaxResult getInfo(@PathVariable("id") Long id)
+    {
+        return success(priceIndexService.selectPriceIndexById(id));
+    }
+
+    /**
+     * 新增priceindex
+     */
+    @PreAuthorize("@ss.hasPermi('priceindex:priceindex:add')")
+    @Log(title = "priceindex", businessType = BusinessType.INSERT)
+    @PostMapping
+    public AjaxResult add(@RequestBody PriceIndex priceIndex)
+    {
+        return toAjax(priceIndexService.insertPriceIndex(priceIndex));
+    }
+
+    /**
+     * 修改priceindex
+     */
+    @PreAuthorize("@ss.hasPermi('priceindex:priceindex:edit')")
+    @Log(title = "priceindex", businessType = BusinessType.UPDATE)
+    @PutMapping
+    public AjaxResult edit(@RequestBody PriceIndex priceIndex)
+    {
+        return toAjax(priceIndexService.updatePriceIndex(priceIndex));
+    }
+
+    /**
+     * 删除priceindex
+     */
+    @PreAuthorize("@ss.hasPermi('priceindex:priceindex:remove')")
+    @Log(title = "priceindex", businessType = BusinessType.DELETE)
+	@DeleteMapping("/{ids}")
+    public AjaxResult remove(@PathVariable Long[] ids)
+    {
+        return toAjax(priceIndexService.deletePriceIndexByIds(ids));
+    }
+}

+ 121 - 0
enteprise-admin/src/main/java/com/enteprise/priceindex/domain/PriceIndex.java

@@ -0,0 +1,121 @@
+package com.enteprise.priceindex.domain;
+
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+import com.enteprise.common.annotation.Excel;
+import com.enteprise.common.core.domain.BaseEntity;
+
+/**
+ * priceindex对象 price_index
+ * 
+ * @author ljx
+ * @date 2025-02-07
+ */
+public class PriceIndex extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** 代码 */
+    private Long id;
+
+    /** 名称 */
+    @Excel(name = "名称")
+    private String name;
+
+    /** 月份 */
+    @Excel(name = "月份")
+    private Long month;
+
+    /** 年份 */
+    @Excel(name = "年份")
+    private Long year;
+
+    /** 单位 */
+    @Excel(name = "单位")
+    private String unit;
+
+    /** 创建人 */
+    @Excel(name = "创建人")
+    private String creator;
+
+    /** 指数 */
+    @Excel(name = "指数")
+    private Long index;
+
+    public void setId(Long id) 
+    {
+        this.id = id;
+    }
+
+    public Long getId() 
+    {
+        return id;
+    }
+    public void setName(String name) 
+    {
+        this.name = name;
+    }
+
+    public String getName() 
+    {
+        return name;
+    }
+    public void setMonth(Long month) 
+    {
+        this.month = month;
+    }
+
+    public Long getMonth() 
+    {
+        return month;
+    }
+    public void setYear(Long year) 
+    {
+        this.year = year;
+    }
+
+    public Long getYear() 
+    {
+        return year;
+    }
+    public void setUnit(String unit) 
+    {
+        this.unit = unit;
+    }
+
+    public String getUnit() 
+    {
+        return unit;
+    }
+    public void setCreator(String creator) 
+    {
+        this.creator = creator;
+    }
+
+    public String getCreator() 
+    {
+        return creator;
+    }
+    public void setIndex(Long index) 
+    {
+        this.index = index;
+    }
+
+    public Long getIndex() 
+    {
+        return index;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("name", getName())
+            .append("month", getMonth())
+            .append("year", getYear())
+            .append("unit", getUnit())
+            .append("creator", getCreator())
+            .append("index", getIndex())
+            .toString();
+    }
+}

+ 61 - 0
enteprise-admin/src/main/java/com/enteprise/priceindex/mapper/PriceIndexMapper.java

@@ -0,0 +1,61 @@
+package com.enteprise.priceindex.mapper;
+
+import java.util.List;
+import com.enteprise.priceindex.domain.PriceIndex;
+
+/**
+ * priceindexMapper接口
+ * 
+ * @author ljx
+ * @date 2025-02-07
+ */
+public interface PriceIndexMapper 
+{
+    /**
+     * 查询priceindex
+     * 
+     * @param id priceindex主键
+     * @return priceindex
+     */
+    public PriceIndex selectPriceIndexById(Long id);
+
+    /**
+     * 查询priceindex列表
+     * 
+     * @param priceIndex priceindex
+     * @return priceindex集合
+     */
+    public List<PriceIndex> selectPriceIndexList(PriceIndex priceIndex);
+
+    /**
+     * 新增priceindex
+     * 
+     * @param priceIndex priceindex
+     * @return 结果
+     */
+    public int insertPriceIndex(PriceIndex priceIndex);
+
+    /**
+     * 修改priceindex
+     * 
+     * @param priceIndex priceindex
+     * @return 结果
+     */
+    public int updatePriceIndex(PriceIndex priceIndex);
+
+    /**
+     * 删除priceindex
+     * 
+     * @param id priceindex主键
+     * @return 结果
+     */
+    public int deletePriceIndexById(Long id);
+
+    /**
+     * 批量删除priceindex
+     * 
+     * @param ids 需要删除的数据主键集合
+     * @return 结果
+     */
+    public int deletePriceIndexByIds(Long[] ids);
+}

+ 61 - 0
enteprise-admin/src/main/java/com/enteprise/priceindex/service/IPriceIndexService.java

@@ -0,0 +1,61 @@
+package com.enteprise.priceindex.service;
+
+import java.util.List;
+import com.enteprise.priceindex.domain.PriceIndex;
+
+/**
+ * priceindexService接口
+ * 
+ * @author ljx
+ * @date 2025-02-07
+ */
+public interface IPriceIndexService 
+{
+    /**
+     * 查询priceindex
+     * 
+     * @param id priceindex主键
+     * @return priceindex
+     */
+    public PriceIndex selectPriceIndexById(Long id);
+
+    /**
+     * 查询priceindex列表
+     * 
+     * @param priceIndex priceindex
+     * @return priceindex集合
+     */
+    public List<PriceIndex> selectPriceIndexList(PriceIndex priceIndex);
+
+    /**
+     * 新增priceindex
+     * 
+     * @param priceIndex priceindex
+     * @return 结果
+     */
+    public int insertPriceIndex(PriceIndex priceIndex);
+
+    /**
+     * 修改priceindex
+     * 
+     * @param priceIndex priceindex
+     * @return 结果
+     */
+    public int updatePriceIndex(PriceIndex priceIndex);
+
+    /**
+     * 批量删除priceindex
+     * 
+     * @param ids 需要删除的priceindex主键集合
+     * @return 结果
+     */
+    public int deletePriceIndexByIds(Long[] ids);
+
+    /**
+     * 删除priceindex信息
+     * 
+     * @param id priceindex主键
+     * @return 结果
+     */
+    public int deletePriceIndexById(Long id);
+}

+ 93 - 0
enteprise-admin/src/main/java/com/enteprise/priceindex/service/impl/PriceIndexServiceImpl.java

@@ -0,0 +1,93 @@
+package com.enteprise.priceindex.service.impl;
+
+import java.util.List;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import com.enteprise.priceindex.mapper.PriceIndexMapper;
+import com.enteprise.priceindex.domain.PriceIndex;
+import com.enteprise.priceindex.service.IPriceIndexService;
+
+/**
+ * priceindexService业务层处理
+ * 
+ * @author ljx
+ * @date 2025-02-07
+ */
+@Service
+public class PriceIndexServiceImpl implements IPriceIndexService 
+{
+    @Autowired
+    private PriceIndexMapper priceIndexMapper;
+
+    /**
+     * 查询priceindex
+     * 
+     * @param id priceindex主键
+     * @return priceindex
+     */
+    @Override
+    public PriceIndex selectPriceIndexById(Long id)
+    {
+        return priceIndexMapper.selectPriceIndexById(id);
+    }
+
+    /**
+     * 查询priceindex列表
+     * 
+     * @param priceIndex priceindex
+     * @return priceindex
+     */
+    @Override
+    public List<PriceIndex> selectPriceIndexList(PriceIndex priceIndex)
+    {
+        return priceIndexMapper.selectPriceIndexList(priceIndex);
+    }
+
+    /**
+     * 新增priceindex
+     * 
+     * @param priceIndex priceindex
+     * @return 结果
+     */
+    @Override
+    public int insertPriceIndex(PriceIndex priceIndex)
+    {
+        return priceIndexMapper.insertPriceIndex(priceIndex);
+    }
+
+    /**
+     * 修改priceindex
+     * 
+     * @param priceIndex priceindex
+     * @return 结果
+     */
+    @Override
+    public int updatePriceIndex(PriceIndex priceIndex)
+    {
+        return priceIndexMapper.updatePriceIndex(priceIndex);
+    }
+
+    /**
+     * 批量删除priceindex
+     * 
+     * @param ids 需要删除的priceindex主键
+     * @return 结果
+     */
+    @Override
+    public int deletePriceIndexByIds(Long[] ids)
+    {
+        return priceIndexMapper.deletePriceIndexByIds(ids);
+    }
+
+    /**
+     * 删除priceindex信息
+     * 
+     * @param id priceindex主键
+     * @return 结果
+     */
+    @Override
+    public int deletePriceIndexById(Long id)
+    {
+        return priceIndexMapper.deletePriceIndexById(id);
+    }
+}

+ 2 - 2
enteprise-admin/src/main/resources/application-druid.yml

@@ -6,9 +6,9 @@ spring:
         druid:
             # 主库数据源
             master:
-                url: jdbc:mysql://127.0.0.1:3306/enterprise?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
+                url: jdbc:mysql://139.9.50.163:3306/enterprise?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
                 username: root
-                password: zqxy@123456
+                password: ydl@123456
             # 从库数据源
             slave:
                 # 从数据源开关/默认关闭

+ 59 - 0
enteprise-admin/src/main/resources/mapper/etype/EnterpriseTypeMapper.xml

@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper
+PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.enteprise.etype.mapper.EnterpriseTypeMapper">
+    
+    <resultMap type="EnterpriseType" id="EnterpriseTypeResult">
+        <result property="number"    column="number"    />
+        <result property="name"    column="name"    />
+    </resultMap>
+
+    <sql id="selectEnterpriseTypeVo">
+        select number, name from enterprise_type
+    </sql>
+
+    <select id="selectEnterpriseTypeList" parameterType="EnterpriseType" resultMap="EnterpriseTypeResult">
+        <include refid="selectEnterpriseTypeVo"/>
+        <where>  
+            <if test="number != null "> and number = #{number}</if>
+            <if test="name != null "> and name like concat('%', #{name}, '%')</if>
+        </where>
+    </select>
+    
+    <select id="selectEnterpriseTypeByNumber" parameterType="Long" resultMap="EnterpriseTypeResult">
+        <include refid="selectEnterpriseTypeVo"/>
+        where number = #{number}
+    </select>
+
+    <insert id="insertEnterpriseType" parameterType="EnterpriseType">
+        insert into enterprise_type
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="number != null">number,</if>
+            <if test="name != null">name,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="number != null">#{number},</if>
+            <if test="name != null">#{name},</if>
+         </trim>
+    </insert>
+
+    <update id="updateEnterpriseType" parameterType="EnterpriseType">
+        update enterprise_type
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="name != null">name = #{name},</if>
+        </trim>
+        where number = #{number}
+    </update>
+
+    <delete id="deleteEnterpriseTypeByNumber" parameterType="Long">
+        delete from enterprise_type where number = #{number}
+    </delete>
+
+    <delete id="deleteEnterpriseTypeByNumbers" parameterType="String">
+        delete from enterprise_type where number in 
+        <foreach item="number" collection="array" open="(" separator="," close=")">
+            #{number}
+        </foreach>
+    </delete>
+</mapper>

+ 83 - 0
enteprise-admin/src/main/resources/mapper/priceindex/PriceIndexMapper.xml

@@ -0,0 +1,83 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper
+PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.enteprise.priceindex.mapper.PriceIndexMapper">
+    
+    <resultMap type="PriceIndex" id="PriceIndexResult">
+        <result property="id"    column="id"    />
+        <result property="name"    column="name"    />
+        <result property="month"    column="month"    />
+        <result property="year"    column="year"    />
+        <result property="unit"    column="unit"    />
+        <result property="creator"    column="creator"    />
+        <result property="index"    column="index"    />
+    </resultMap>
+
+    <sql id="selectPriceIndexVo">
+        select id, name, month, year, unit, creator, index from price_index
+    </sql>
+
+    <select id="selectPriceIndexList" parameterType="PriceIndex" resultMap="PriceIndexResult">
+        <include refid="selectPriceIndexVo"/>
+        <where>  
+            <if test="name != null  and name != ''"> and name like concat('%', #{name}, '%')</if>
+            <if test="month != null "> and month = #{month}</if>
+            <if test="year != null "> and year = #{year}</if>
+            <if test="unit != null  and unit != ''"> and unit = #{unit}</if>
+            <if test="creator != null  and creator != ''"> and creator = #{creator}</if>
+            <if test="index != null "> and index = #{index}</if>
+        </where>
+    </select>
+    
+    <select id="selectPriceIndexById" parameterType="Long" resultMap="PriceIndexResult">
+        <include refid="selectPriceIndexVo"/>
+        where id = #{id}
+    </select>
+
+    <insert id="insertPriceIndex" parameterType="PriceIndex">
+        insert into price_index
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="id != null">id,</if>
+            <if test="name != null">name,</if>
+            <if test="month != null">month,</if>
+            <if test="year != null">year,</if>
+            <if test="unit != null">unit,</if>
+            <if test="creator != null">creator,</if>
+            <if test="index != null">index,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="id != null">#{id},</if>
+            <if test="name != null">#{name},</if>
+            <if test="month != null">#{month},</if>
+            <if test="year != null">#{year},</if>
+            <if test="unit != null">#{unit},</if>
+            <if test="creator != null">#{creator},</if>
+            <if test="index != null">#{index},</if>
+         </trim>
+    </insert>
+
+    <update id="updatePriceIndex" parameterType="PriceIndex">
+        update price_index
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="name != null">name = #{name},</if>
+            <if test="month != null">month = #{month},</if>
+            <if test="year != null">year = #{year},</if>
+            <if test="unit != null">unit = #{unit},</if>
+            <if test="creator != null">creator = #{creator},</if>
+            <if test="index != null">index = #{index},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <delete id="deletePriceIndexById" parameterType="Long">
+        delete from price_index where id = #{id}
+    </delete>
+
+    <delete id="deletePriceIndexByIds" parameterType="String">
+        delete from price_index where id in 
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </delete>
+</mapper>