设置顶部导航菜单、固定头部。
添加园区规划的农场分区、菜地划分,其中菜地划分暂未调通。 备份csa.sql开发数据库。
This commit is contained in:
parent
d562c17efc
commit
3027dbb60e
@ -0,0 +1,104 @@
|
||||
package com.jlt.csa.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.jlt.csa.domain.Garden;
|
||||
import com.jlt.csa.service.IGardenService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 菜地划分Controller
|
||||
*
|
||||
* @author 郏磊涛
|
||||
* @date 2022-03-24
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/csa/garden")
|
||||
public class GardenController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private IGardenService gardenService;
|
||||
|
||||
/**
|
||||
* 查询菜地划分列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('csa:garden:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(Garden garden)
|
||||
{
|
||||
startPage();
|
||||
List<Garden> list = gardenService.selectGardenList(garden);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出菜地划分列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('csa:garden:export')")
|
||||
@Log(title = "菜地划分", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, Garden garden)
|
||||
{
|
||||
List<Garden> list = gardenService.selectGardenList(garden);
|
||||
ExcelUtil<Garden> util = new ExcelUtil<Garden>(Garden.class);
|
||||
util.exportExcel(response, list, "菜地划分数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取菜地划分详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('csa:garden:query')")
|
||||
@GetMapping(value = "/{id}")
|
||||
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||
{
|
||||
return AjaxResult.success(gardenService.selectGardenById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增菜地划分
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('csa:garden:add')")
|
||||
@Log(title = "菜地划分", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody Garden garden)
|
||||
{
|
||||
return toAjax(gardenService.insertGarden(garden));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改菜地划分
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('csa:garden:edit')")
|
||||
@Log(title = "菜地划分", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody Garden garden)
|
||||
{
|
||||
return toAjax(gardenService.updateGarden(garden));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除菜地划分
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('csa:garden:remove')")
|
||||
@Log(title = "菜地划分", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public AjaxResult remove(@PathVariable Long[] ids)
|
||||
{
|
||||
return toAjax(gardenService.deleteGardenByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,104 @@
|
||||
package com.jlt.csa.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.jlt.csa.domain.Zone;
|
||||
import com.jlt.csa.service.IZoneService;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 农场分区Controller
|
||||
*
|
||||
* @author 郏磊涛
|
||||
* @date 2022-03-24
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/csa/zone")
|
||||
public class ZoneController extends BaseController
|
||||
{
|
||||
@Autowired
|
||||
private IZoneService zoneService;
|
||||
|
||||
/**
|
||||
* 查询农场分区列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('csa:zone:list')")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo list(Zone zone)
|
||||
{
|
||||
startPage();
|
||||
List<Zone> list = zoneService.selectZoneList(zone);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出农场分区列表
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('csa:zone:export')")
|
||||
@Log(title = "农场分区", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
public void export(HttpServletResponse response, Zone zone)
|
||||
{
|
||||
List<Zone> list = zoneService.selectZoneList(zone);
|
||||
ExcelUtil<Zone> util = new ExcelUtil<Zone>(Zone.class);
|
||||
util.exportExcel(response, list, "农场分区数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取农场分区详细信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('csa:zone:query')")
|
||||
@GetMapping(value = "/{code}")
|
||||
public AjaxResult getInfo(@PathVariable("code") String code)
|
||||
{
|
||||
return AjaxResult.success(zoneService.selectZoneByCode(code));
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增农场分区
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('csa:zone:add')")
|
||||
@Log(title = "农场分区", businessType = BusinessType.INSERT)
|
||||
@PostMapping
|
||||
public AjaxResult add(@RequestBody Zone zone)
|
||||
{
|
||||
return toAjax(zoneService.insertZone(zone));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改农场分区
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('csa:zone:edit')")
|
||||
@Log(title = "农场分区", businessType = BusinessType.UPDATE)
|
||||
@PutMapping
|
||||
public AjaxResult edit(@RequestBody Zone zone)
|
||||
{
|
||||
return toAjax(zoneService.updateZone(zone));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除农场分区
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('csa:zone:remove')")
|
||||
@Log(title = "农场分区", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{codes}")
|
||||
public AjaxResult remove(@PathVariable String[] codes)
|
||||
{
|
||||
return toAjax(zoneService.deleteZoneByCodes(codes));
|
||||
}
|
||||
}
|
231
private-farm/src/main/java/com/jlt/csa/domain/Garden.java
Normal file
231
private-farm/src/main/java/com/jlt/csa/domain/Garden.java
Normal file
@ -0,0 +1,231 @@
|
||||
package com.jlt.csa.domain;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
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;
|
||||
|
||||
/**
|
||||
* 菜地划分对象 csa_garden
|
||||
*
|
||||
* @author 郏磊涛
|
||||
* @date 2022-03-24
|
||||
*/
|
||||
public class Garden extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** $column.columnComment */
|
||||
private Long id;
|
||||
|
||||
/** 菜地编号 */
|
||||
@Excel(name = "菜地编号")
|
||||
private String code;
|
||||
|
||||
/** 分区代码 */
|
||||
@Excel(name = "分区代码")
|
||||
private String zoneCode;
|
||||
|
||||
/** 菜地名称 */
|
||||
@Excel(name = "菜地名称")
|
||||
private String name;
|
||||
|
||||
/** 平方米 */
|
||||
@Excel(name = "平方米")
|
||||
private BigDecimal m2;
|
||||
|
||||
/** 会员id */
|
||||
private Long memberId;
|
||||
|
||||
/** 菜地管理员id */
|
||||
private Long managerId;
|
||||
|
||||
/** 工人id */
|
||||
private Long workerId;
|
||||
|
||||
/** 客服人员id */
|
||||
private Long contacterId;
|
||||
|
||||
/** 金币 */
|
||||
@Excel(name = "金币")
|
||||
private BigDecimal coins;
|
||||
|
||||
/** 耕作状态 */
|
||||
private String isFarming;
|
||||
|
||||
/** 售出状态 */
|
||||
private String isSelled;
|
||||
|
||||
/** 竣工状态 */
|
||||
@Excel(name = "竣工状态")
|
||||
private String isCompleted;
|
||||
|
||||
/** 状态(0正常 1停用) */
|
||||
private String status;
|
||||
|
||||
/** 删除标志(0代表存在 2代表删除) */
|
||||
private String delFlag;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
return id;
|
||||
}
|
||||
public void setCode(String code)
|
||||
{
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getCode()
|
||||
{
|
||||
return code;
|
||||
}
|
||||
public void setZoneCode(String zoneCode)
|
||||
{
|
||||
this.zoneCode = zoneCode;
|
||||
}
|
||||
|
||||
public String getZoneCode()
|
||||
{
|
||||
return zoneCode;
|
||||
}
|
||||
public void setName(String name)
|
||||
{
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getName()
|
||||
{
|
||||
return name;
|
||||
}
|
||||
public void setM2(BigDecimal m2)
|
||||
{
|
||||
this.m2 = m2;
|
||||
}
|
||||
|
||||
public BigDecimal getM2()
|
||||
{
|
||||
return m2;
|
||||
}
|
||||
public void setMemberId(Long memberId)
|
||||
{
|
||||
this.memberId = memberId;
|
||||
}
|
||||
|
||||
public Long getMemberId()
|
||||
{
|
||||
return memberId;
|
||||
}
|
||||
public void setManagerId(Long managerId)
|
||||
{
|
||||
this.managerId = managerId;
|
||||
}
|
||||
|
||||
public Long getManagerId()
|
||||
{
|
||||
return managerId;
|
||||
}
|
||||
public void setWorkerId(Long workerId)
|
||||
{
|
||||
this.workerId = workerId;
|
||||
}
|
||||
|
||||
public Long getWorkerId()
|
||||
{
|
||||
return workerId;
|
||||
}
|
||||
public void setContacterId(Long contacterId)
|
||||
{
|
||||
this.contacterId = contacterId;
|
||||
}
|
||||
|
||||
public Long getContacterId()
|
||||
{
|
||||
return contacterId;
|
||||
}
|
||||
public void setCoins(BigDecimal coins)
|
||||
{
|
||||
this.coins = coins;
|
||||
}
|
||||
|
||||
public BigDecimal getCoins()
|
||||
{
|
||||
return coins;
|
||||
}
|
||||
public void setIsFarming(String isFarming)
|
||||
{
|
||||
this.isFarming = isFarming;
|
||||
}
|
||||
|
||||
public String getIsFarming()
|
||||
{
|
||||
return isFarming;
|
||||
}
|
||||
public void setIsSelled(String isSelled)
|
||||
{
|
||||
this.isSelled = isSelled;
|
||||
}
|
||||
|
||||
public String getIsSelled()
|
||||
{
|
||||
return isSelled;
|
||||
}
|
||||
public void setIsCompleted(String isCompleted)
|
||||
{
|
||||
this.isCompleted = isCompleted;
|
||||
}
|
||||
|
||||
public String getIsCompleted()
|
||||
{
|
||||
return isCompleted;
|
||||
}
|
||||
public void setStatus(String status)
|
||||
{
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getStatus()
|
||||
{
|
||||
return status;
|
||||
}
|
||||
public void setDelFlag(String delFlag)
|
||||
{
|
||||
this.delFlag = delFlag;
|
||||
}
|
||||
|
||||
public String getDelFlag()
|
||||
{
|
||||
return delFlag;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("code", getCode())
|
||||
.append("zoneCode", getZoneCode())
|
||||
.append("name", getName())
|
||||
.append("m2", getM2())
|
||||
.append("memberId", getMemberId())
|
||||
.append("managerId", getManagerId())
|
||||
.append("workerId", getWorkerId())
|
||||
.append("contacterId", getContacterId())
|
||||
.append("coins", getCoins())
|
||||
.append("isFarming", getIsFarming())
|
||||
.append("isSelled", getIsSelled())
|
||||
.append("isCompleted", getIsCompleted())
|
||||
.append("status", getStatus())
|
||||
.append("delFlag", getDelFlag())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("remark", getRemark())
|
||||
.toString();
|
||||
}
|
||||
}
|
84
private-farm/src/main/java/com/jlt/csa/domain/Zone.java
Normal file
84
private-farm/src/main/java/com/jlt/csa/domain/Zone.java
Normal file
@ -0,0 +1,84 @@
|
||||
package com.jlt.csa.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;
|
||||
|
||||
/**
|
||||
* 农场分区对象 csa_zone
|
||||
*
|
||||
* @author 郏磊涛
|
||||
* @date 2022-03-24
|
||||
*/
|
||||
public class Zone extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 分区代码 */
|
||||
@Excel(name = "分区代码")
|
||||
private String code;
|
||||
|
||||
/** 分区名称 */
|
||||
@Excel(name = "分区名称")
|
||||
private String name;
|
||||
|
||||
/** 状态 */
|
||||
@Excel(name = "状态")
|
||||
private String status;
|
||||
|
||||
/** 删除标志 */
|
||||
private String delFlag;
|
||||
|
||||
public void setCode(String code)
|
||||
{
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getCode()
|
||||
{
|
||||
return code;
|
||||
}
|
||||
public void setName(String name)
|
||||
{
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getName()
|
||||
{
|
||||
return name;
|
||||
}
|
||||
public void setStatus(String status)
|
||||
{
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public String getStatus()
|
||||
{
|
||||
return status;
|
||||
}
|
||||
public void setDelFlag(String delFlag)
|
||||
{
|
||||
this.delFlag = delFlag;
|
||||
}
|
||||
|
||||
public String getDelFlag()
|
||||
{
|
||||
return delFlag;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("code", getCode())
|
||||
.append("name", getName())
|
||||
.append("status", getStatus())
|
||||
.append("delFlag", getDelFlag())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("remark", getRemark())
|
||||
.toString();
|
||||
}
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.jlt.csa.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.jlt.csa.domain.Garden;
|
||||
|
||||
/**
|
||||
* 菜地划分Mapper接口
|
||||
*
|
||||
* @author 郏磊涛
|
||||
* @date 2022-03-24
|
||||
*/
|
||||
public interface GardenMapper
|
||||
{
|
||||
/**
|
||||
* 查询菜地划分
|
||||
*
|
||||
* @param id 菜地划分主键
|
||||
* @return 菜地划分
|
||||
*/
|
||||
public Garden selectGardenById(Long id);
|
||||
|
||||
/**
|
||||
* 查询菜地划分列表
|
||||
*
|
||||
* @param garden 菜地划分
|
||||
* @return 菜地划分集合
|
||||
*/
|
||||
public List<Garden> selectGardenList(Garden garden);
|
||||
|
||||
/**
|
||||
* 新增菜地划分
|
||||
*
|
||||
* @param garden 菜地划分
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertGarden(Garden garden);
|
||||
|
||||
/**
|
||||
* 修改菜地划分
|
||||
*
|
||||
* @param garden 菜地划分
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateGarden(Garden garden);
|
||||
|
||||
/**
|
||||
* 删除菜地划分
|
||||
*
|
||||
* @param id 菜地划分主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteGardenById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除菜地划分
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteGardenByIds(Long[] ids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.jlt.csa.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.jlt.csa.domain.Zone;
|
||||
|
||||
/**
|
||||
* 农场分区Mapper接口
|
||||
*
|
||||
* @author 郏磊涛
|
||||
* @date 2022-03-24
|
||||
*/
|
||||
public interface ZoneMapper
|
||||
{
|
||||
/**
|
||||
* 查询农场分区
|
||||
*
|
||||
* @param code 农场分区主键
|
||||
* @return 农场分区
|
||||
*/
|
||||
public Zone selectZoneByCode(String code);
|
||||
|
||||
/**
|
||||
* 查询农场分区列表
|
||||
*
|
||||
* @param zone 农场分区
|
||||
* @return 农场分区集合
|
||||
*/
|
||||
public List<Zone> selectZoneList(Zone zone);
|
||||
|
||||
/**
|
||||
* 新增农场分区
|
||||
*
|
||||
* @param zone 农场分区
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertZone(Zone zone);
|
||||
|
||||
/**
|
||||
* 修改农场分区
|
||||
*
|
||||
* @param zone 农场分区
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateZone(Zone zone);
|
||||
|
||||
/**
|
||||
* 删除农场分区
|
||||
*
|
||||
* @param code 农场分区主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteZoneByCode(String code);
|
||||
|
||||
/**
|
||||
* 批量删除农场分区
|
||||
*
|
||||
* @param codes 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteZoneByCodes(String[] codes);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.jlt.csa.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.jlt.csa.domain.Garden;
|
||||
|
||||
/**
|
||||
* 菜地划分Service接口
|
||||
*
|
||||
* @author 郏磊涛
|
||||
* @date 2022-03-24
|
||||
*/
|
||||
public interface IGardenService
|
||||
{
|
||||
/**
|
||||
* 查询菜地划分
|
||||
*
|
||||
* @param id 菜地划分主键
|
||||
* @return 菜地划分
|
||||
*/
|
||||
public Garden selectGardenById(Long id);
|
||||
|
||||
/**
|
||||
* 查询菜地划分列表
|
||||
*
|
||||
* @param garden 菜地划分
|
||||
* @return 菜地划分集合
|
||||
*/
|
||||
public List<Garden> selectGardenList(Garden garden);
|
||||
|
||||
/**
|
||||
* 新增菜地划分
|
||||
*
|
||||
* @param garden 菜地划分
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertGarden(Garden garden);
|
||||
|
||||
/**
|
||||
* 修改菜地划分
|
||||
*
|
||||
* @param garden 菜地划分
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateGarden(Garden garden);
|
||||
|
||||
/**
|
||||
* 批量删除菜地划分
|
||||
*
|
||||
* @param ids 需要删除的菜地划分主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteGardenByIds(Long[] ids);
|
||||
|
||||
/**
|
||||
* 删除菜地划分信息
|
||||
*
|
||||
* @param id 菜地划分主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteGardenById(Long id);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.jlt.csa.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.jlt.csa.domain.Zone;
|
||||
|
||||
/**
|
||||
* 农场分区Service接口
|
||||
*
|
||||
* @author 郏磊涛
|
||||
* @date 2022-03-24
|
||||
*/
|
||||
public interface IZoneService
|
||||
{
|
||||
/**
|
||||
* 查询农场分区
|
||||
*
|
||||
* @param code 农场分区主键
|
||||
* @return 农场分区
|
||||
*/
|
||||
public Zone selectZoneByCode(String code);
|
||||
|
||||
/**
|
||||
* 查询农场分区列表
|
||||
*
|
||||
* @param zone 农场分区
|
||||
* @return 农场分区集合
|
||||
*/
|
||||
public List<Zone> selectZoneList(Zone zone);
|
||||
|
||||
/**
|
||||
* 新增农场分区
|
||||
*
|
||||
* @param zone 农场分区
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertZone(Zone zone);
|
||||
|
||||
/**
|
||||
* 修改农场分区
|
||||
*
|
||||
* @param zone 农场分区
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateZone(Zone zone);
|
||||
|
||||
/**
|
||||
* 批量删除农场分区
|
||||
*
|
||||
* @param codes 需要删除的农场分区主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteZoneByCodes(String[] codes);
|
||||
|
||||
/**
|
||||
* 删除农场分区信息
|
||||
*
|
||||
* @param code 农场分区主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteZoneByCode(String code);
|
||||
}
|
@ -0,0 +1,96 @@
|
||||
package com.jlt.csa.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.jlt.csa.mapper.GardenMapper;
|
||||
import com.jlt.csa.domain.Garden;
|
||||
import com.jlt.csa.service.IGardenService;
|
||||
|
||||
/**
|
||||
* 菜地划分Service业务层处理
|
||||
*
|
||||
* @author 郏磊涛
|
||||
* @date 2022-03-24
|
||||
*/
|
||||
@Service
|
||||
public class GardenServiceImpl implements IGardenService
|
||||
{
|
||||
@Autowired
|
||||
private GardenMapper gardenMapper;
|
||||
|
||||
/**
|
||||
* 查询菜地划分
|
||||
*
|
||||
* @param id 菜地划分主键
|
||||
* @return 菜地划分
|
||||
*/
|
||||
@Override
|
||||
public Garden selectGardenById(Long id)
|
||||
{
|
||||
return gardenMapper.selectGardenById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询菜地划分列表
|
||||
*
|
||||
* @param garden 菜地划分
|
||||
* @return 菜地划分
|
||||
*/
|
||||
@Override
|
||||
public List<Garden> selectGardenList(Garden garden)
|
||||
{
|
||||
return gardenMapper.selectGardenList(garden);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增菜地划分
|
||||
*
|
||||
* @param garden 菜地划分
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int insertGarden(Garden garden)
|
||||
{
|
||||
garden.setCreateTime(DateUtils.getNowDate());
|
||||
return gardenMapper.insertGarden(garden);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改菜地划分
|
||||
*
|
||||
* @param garden 菜地划分
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int updateGarden(Garden garden)
|
||||
{
|
||||
garden.setUpdateTime(DateUtils.getNowDate());
|
||||
return gardenMapper.updateGarden(garden);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除菜地划分
|
||||
*
|
||||
* @param ids 需要删除的菜地划分主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int deleteGardenByIds(Long[] ids)
|
||||
{
|
||||
return gardenMapper.deleteGardenByIds(ids);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除菜地划分信息
|
||||
*
|
||||
* @param id 菜地划分主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int deleteGardenById(Long id)
|
||||
{
|
||||
return gardenMapper.deleteGardenById(id);
|
||||
}
|
||||
}
|
@ -0,0 +1,96 @@
|
||||
package com.jlt.csa.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.jlt.csa.mapper.ZoneMapper;
|
||||
import com.jlt.csa.domain.Zone;
|
||||
import com.jlt.csa.service.IZoneService;
|
||||
|
||||
/**
|
||||
* 农场分区Service业务层处理
|
||||
*
|
||||
* @author 郏磊涛
|
||||
* @date 2022-03-24
|
||||
*/
|
||||
@Service
|
||||
public class ZoneServiceImpl implements IZoneService
|
||||
{
|
||||
@Autowired
|
||||
private ZoneMapper zoneMapper;
|
||||
|
||||
/**
|
||||
* 查询农场分区
|
||||
*
|
||||
* @param code 农场分区主键
|
||||
* @return 农场分区
|
||||
*/
|
||||
@Override
|
||||
public Zone selectZoneByCode(String code)
|
||||
{
|
||||
return zoneMapper.selectZoneByCode(code);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询农场分区列表
|
||||
*
|
||||
* @param zone 农场分区
|
||||
* @return 农场分区
|
||||
*/
|
||||
@Override
|
||||
public List<Zone> selectZoneList(Zone zone)
|
||||
{
|
||||
return zoneMapper.selectZoneList(zone);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增农场分区
|
||||
*
|
||||
* @param zone 农场分区
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int insertZone(Zone zone)
|
||||
{
|
||||
zone.setCreateTime(DateUtils.getNowDate());
|
||||
return zoneMapper.insertZone(zone);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改农场分区
|
||||
*
|
||||
* @param zone 农场分区
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int updateZone(Zone zone)
|
||||
{
|
||||
zone.setUpdateTime(DateUtils.getNowDate());
|
||||
return zoneMapper.updateZone(zone);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除农场分区
|
||||
*
|
||||
* @param codes 需要删除的农场分区主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int deleteZoneByCodes(String[] codes)
|
||||
{
|
||||
return zoneMapper.deleteZoneByCodes(codes);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除农场分区信息
|
||||
*
|
||||
* @param code 农场分区主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int deleteZoneByCode(String code)
|
||||
{
|
||||
return zoneMapper.deleteZoneByCode(code);
|
||||
}
|
||||
}
|
139
private-farm/src/main/resources/mapper/csa/GardenMapper.xml
Normal file
139
private-farm/src/main/resources/mapper/csa/GardenMapper.xml
Normal file
@ -0,0 +1,139 @@
|
||||
<?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.jlt.csa.mapper.GardenMapper">
|
||||
|
||||
<resultMap type="Garden" id="GardenResult">
|
||||
<result property="id" column="id" />
|
||||
<result property="code" column="code" />
|
||||
<result property="zoneCode" column="zone_code" />
|
||||
<result property="name" column="name" />
|
||||
<result property="m2" column="m2" />
|
||||
<result property="memberId" column="member_id" />
|
||||
<result property="managerId" column="manager_id" />
|
||||
<result property="workerId" column="worker_id" />
|
||||
<result property="contacterId" column="contacter_id" />
|
||||
<result property="coins" column="coins" />
|
||||
<result property="isFarming" column="is_farming" />
|
||||
<result property="isSelled" column="is_selled" />
|
||||
<result property="isCompleted" column="is_completed" />
|
||||
<result property="status" column="status" />
|
||||
<result property="delFlag" column="del_flag" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="remark" column="remark" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectGardenVo">
|
||||
select id, code, zone_code, name, m2, member_id, manager_id, worker_id, contacter_id, coins, is_farming, is_selled, is_completed, status, del_flag, create_by, create_time, update_by, update_time, remark from csa_garden
|
||||
</sql>
|
||||
|
||||
<select id="selectGardenList" parameterType="Garden" resultMap="GardenResult">
|
||||
<include refid="selectGardenVo"/>
|
||||
<where>
|
||||
<if test="code != null and code != ''"> and code = #{code}</if>
|
||||
<if test="zoneCode != null and zoneCode != ''"> and zone_code = #{zoneCode}</if>
|
||||
<if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
|
||||
<if test="memberId != null "> and member_id = #{memberId}</if>
|
||||
<if test="managerId != null "> and manager_id = #{managerId}</if>
|
||||
<if test="workerId != null "> and worker_id = #{workerId}</if>
|
||||
<if test="contacterId != null "> and contacter_id = #{contacterId}</if>
|
||||
<if test="isFarming != null and isFarming != ''"> and is_farming = #{isFarming}</if>
|
||||
<if test="isSelled != null and isSelled != ''"> and is_selled = #{isSelled}</if>
|
||||
<if test="isCompleted != null and isCompleted != ''"> and is_completed = #{isCompleted}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectGardenById" parameterType="Long" resultMap="GardenResult">
|
||||
<include refid="selectGardenVo"/>
|
||||
where id = #{id}
|
||||
</select>
|
||||
|
||||
<insert id="insertGarden" parameterType="Garden">
|
||||
insert into csa_garden
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="id != null">id,</if>
|
||||
<if test="code != null and code != ''">code,</if>
|
||||
<if test="zoneCode != null and zoneCode != ''">zone_code,</if>
|
||||
<if test="name != null and name != ''">name,</if>
|
||||
<if test="m2 != null">m2,</if>
|
||||
<if test="memberId != null">member_id,</if>
|
||||
<if test="managerId != null">manager_id,</if>
|
||||
<if test="workerId != null">worker_id,</if>
|
||||
<if test="contacterId != null">contacter_id,</if>
|
||||
<if test="coins != null">coins,</if>
|
||||
<if test="isFarming != null">is_farming,</if>
|
||||
<if test="isSelled != null">is_selled,</if>
|
||||
<if test="isCompleted != null">is_completed,</if>
|
||||
<if test="status != null">status,</if>
|
||||
<if test="delFlag != null">del_flag,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="id != null">#{id},</if>
|
||||
<if test="code != null and code != ''">#{code},</if>
|
||||
<if test="zoneCode != null and zoneCode != ''">#{zoneCode},</if>
|
||||
<if test="name != null and name != ''">#{name},</if>
|
||||
<if test="m2 != null">#{m2},</if>
|
||||
<if test="memberId != null">#{memberId},</if>
|
||||
<if test="managerId != null">#{managerId},</if>
|
||||
<if test="workerId != null">#{workerId},</if>
|
||||
<if test="contacterId != null">#{contacterId},</if>
|
||||
<if test="coins != null">#{coins},</if>
|
||||
<if test="isFarming != null">#{isFarming},</if>
|
||||
<if test="isSelled != null">#{isSelled},</if>
|
||||
<if test="isCompleted != null">#{isCompleted},</if>
|
||||
<if test="status != null">#{status},</if>
|
||||
<if test="delFlag != null">#{delFlag},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
<if test="updateBy != null">#{updateBy},</if>
|
||||
<if test="updateTime != null">#{updateTime},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateGarden" parameterType="Garden">
|
||||
update csa_garden
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="code != null and code != ''">code = #{code},</if>
|
||||
<if test="zoneCode != null and zoneCode != ''">zone_code = #{zoneCode},</if>
|
||||
<if test="name != null and name != ''">name = #{name},</if>
|
||||
<if test="m2 != null">m2 = #{m2},</if>
|
||||
<if test="memberId != null">member_id = #{memberId},</if>
|
||||
<if test="managerId != null">manager_id = #{managerId},</if>
|
||||
<if test="workerId != null">worker_id = #{workerId},</if>
|
||||
<if test="contacterId != null">contacter_id = #{contacterId},</if>
|
||||
<if test="coins != null">coins = #{coins},</if>
|
||||
<if test="isFarming != null">is_farming = #{isFarming},</if>
|
||||
<if test="isSelled != null">is_selled = #{isSelled},</if>
|
||||
<if test="isCompleted != null">is_completed = #{isCompleted},</if>
|
||||
<if test="status != null">status = #{status},</if>
|
||||
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
||||
<delete id="deleteGardenById" parameterType="Long">
|
||||
delete from csa_garden where id = #{id}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteGardenByIds" parameterType="String">
|
||||
delete from csa_garden where id in
|
||||
<foreach item="id" collection="array" open="(" separator="," close=")">
|
||||
#{id}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
87
private-farm/src/main/resources/mapper/csa/ZoneMapper.xml
Normal file
87
private-farm/src/main/resources/mapper/csa/ZoneMapper.xml
Normal file
@ -0,0 +1,87 @@
|
||||
<?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.jlt.csa.mapper.ZoneMapper">
|
||||
|
||||
<resultMap type="Zone" id="ZoneResult">
|
||||
<result property="code" column="code" />
|
||||
<result property="name" column="name" />
|
||||
<result property="status" column="status" />
|
||||
<result property="delFlag" column="del_flag" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="remark" column="remark" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectZoneVo">
|
||||
select code, name, status, del_flag, create_by, create_time, update_by, update_time, remark from csa_zone
|
||||
</sql>
|
||||
|
||||
<select id="selectZoneList" parameterType="Zone" resultMap="ZoneResult">
|
||||
<include refid="selectZoneVo"/>
|
||||
<where>
|
||||
<if test="code != null and code != ''"> and code = #{code}</if>
|
||||
<if test="name != null and name != ''"> and name = #{name}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectZoneByCode" parameterType="String" resultMap="ZoneResult">
|
||||
<include refid="selectZoneVo"/>
|
||||
where code = #{code}
|
||||
</select>
|
||||
|
||||
<insert id="insertZone" parameterType="Zone">
|
||||
insert into csa_zone
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="code != null and code != ''">code,</if>
|
||||
<if test="name != null and name != ''">name,</if>
|
||||
<if test="status != null">status,</if>
|
||||
<if test="delFlag != null">del_flag,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="code != null and code != ''">#{code},</if>
|
||||
<if test="name != null and name != ''">#{name},</if>
|
||||
<if test="status != null">#{status},</if>
|
||||
<if test="delFlag != null">#{delFlag},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
<if test="updateBy != null">#{updateBy},</if>
|
||||
<if test="updateTime != null">#{updateTime},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateZone" parameterType="Zone">
|
||||
update csa_zone
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="name != null and name != ''">name = #{name},</if>
|
||||
<if test="status != null">status = #{status},</if>
|
||||
<if test="delFlag != null">del_flag = #{delFlag},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
</trim>
|
||||
where code = #{code}
|
||||
</update>
|
||||
|
||||
<delete id="deleteZoneByCode" parameterType="String">
|
||||
delete from csa_zone where code = #{code}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteZoneByCodes" parameterType="String">
|
||||
delete from csa_zone where code in
|
||||
<foreach item="code" collection="array" open="(" separator="," close=")">
|
||||
#{code}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
44
ruoyi-ui/src/api/csa/garden.js
Normal file
44
ruoyi-ui/src/api/csa/garden.js
Normal file
@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询菜地划分列表
|
||||
export function listGarden(query) {
|
||||
return request({
|
||||
url: '/csa/garden/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询菜地划分详细
|
||||
export function getGarden(id) {
|
||||
return request({
|
||||
url: '/csa/garden/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增菜地划分
|
||||
export function addGarden(data) {
|
||||
return request({
|
||||
url: '/csa/garden',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改菜地划分
|
||||
export function updateGarden(data) {
|
||||
return request({
|
||||
url: '/csa/garden',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除菜地划分
|
||||
export function delGarden(id) {
|
||||
return request({
|
||||
url: '/csa/garden/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
44
ruoyi-ui/src/api/csa/zone.js
Normal file
44
ruoyi-ui/src/api/csa/zone.js
Normal file
@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询农场分区列表
|
||||
export function listZone(query) {
|
||||
return request({
|
||||
url: '/csa/zone/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询农场分区详细
|
||||
export function getZone(code) {
|
||||
return request({
|
||||
url: '/csa/zone/' + code,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增农场分区
|
||||
export function addZone(data) {
|
||||
return request({
|
||||
url: '/csa/zone',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改农场分区
|
||||
export function updateZone(data) {
|
||||
return request({
|
||||
url: '/csa/zone',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除农场分区
|
||||
export function delZone(code) {
|
||||
return request({
|
||||
url: '/csa/zone/' + code,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
@ -1,44 +1,44 @@
|
||||
module.exports = {
|
||||
/**
|
||||
* 侧边栏主题 深色主题theme-dark,浅色主题theme-light
|
||||
*/
|
||||
sideTheme: 'theme-dark',
|
||||
|
||||
/**
|
||||
* 是否系统布局配置
|
||||
*/
|
||||
showSettings: false,
|
||||
|
||||
/**
|
||||
* 是否显示顶部导航
|
||||
*/
|
||||
topNav: false,
|
||||
|
||||
/**
|
||||
* 是否显示 tagsView
|
||||
*/
|
||||
tagsView: true,
|
||||
|
||||
/**
|
||||
* 是否固定头部
|
||||
*/
|
||||
fixedHeader: false,
|
||||
|
||||
/**
|
||||
* 是否显示logo
|
||||
*/
|
||||
sidebarLogo: true,
|
||||
|
||||
/**
|
||||
* 是否显示动态标题
|
||||
*/
|
||||
dynamicTitle: false,
|
||||
|
||||
/**
|
||||
* @type {string | array} 'production' | ['production', 'development']
|
||||
* @description Need show err logs component.
|
||||
* The default is only used in the production env
|
||||
* If you want to also use it in dev, you can pass ['production', 'development']
|
||||
*/
|
||||
errorLog: 'production'
|
||||
}
|
||||
module.exports = {
|
||||
/**
|
||||
* 侧边栏主题 深色主题theme-dark,浅色主题theme-light
|
||||
*/
|
||||
sideTheme: 'theme-dark',
|
||||
|
||||
/**
|
||||
* 是否系统布局配置
|
||||
*/
|
||||
showSettings: false,
|
||||
|
||||
/**
|
||||
* 是否显示顶部导航
|
||||
*/
|
||||
topNav: true,
|
||||
|
||||
/**
|
||||
* 是否显示 tagsView
|
||||
*/
|
||||
tagsView: true,
|
||||
|
||||
/**
|
||||
* 是否固定头部
|
||||
*/
|
||||
fixedHeader: true,
|
||||
|
||||
/**
|
||||
* 是否显示logo
|
||||
*/
|
||||
sidebarLogo: true,
|
||||
|
||||
/**
|
||||
* 是否显示动态标题
|
||||
*/
|
||||
dynamicTitle: false,
|
||||
|
||||
/**
|
||||
* @type {string | array} 'production' | ['production', 'development']
|
||||
* @description Need show err logs component.
|
||||
* The default is only used in the production env
|
||||
* If you want to also use it in dev, you can pass ['production', 'development']
|
||||
*/
|
||||
errorLog: 'production'
|
||||
}
|
||||
|
323
ruoyi-ui/src/views/csa/garden/index.vue
Normal file
323
ruoyi-ui/src/views/csa/garden/index.vue
Normal file
@ -0,0 +1,323 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
||||
<el-form-item label="菜地编号" prop="code" label-width="100">
|
||||
<el-input
|
||||
v-model="queryParams.code"
|
||||
placeholder="请输入菜地编号"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="分区代码" prop="zoneCode">
|
||||
<el-input
|
||||
v-model="queryParams.zoneCode"
|
||||
placeholder="请输入分区代码"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="菜地名称" prop="name">
|
||||
<el-input
|
||||
v-model="queryParams.name"
|
||||
placeholder="请输入菜地名称"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="竣工状态" prop="isCompleted">
|
||||
<el-input
|
||||
v-model="queryParams.isCompleted"
|
||||
placeholder="请输入竣工状态"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="primary"
|
||||
plain
|
||||
icon="el-icon-plus"
|
||||
size="mini"
|
||||
@click="handleAdd"
|
||||
v-hasPermi="['csa:garden:add']"
|
||||
>新增</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="success"
|
||||
plain
|
||||
icon="el-icon-edit"
|
||||
size="mini"
|
||||
:disabled="single"
|
||||
@click="handleUpdate"
|
||||
v-hasPermi="['csa:garden:edit']"
|
||||
>修改</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="danger"
|
||||
plain
|
||||
icon="el-icon-delete"
|
||||
size="mini"
|
||||
:disabled="multiple"
|
||||
@click="handleDelete"
|
||||
v-hasPermi="['csa:garden:remove']"
|
||||
>删除</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="warning"
|
||||
plain
|
||||
icon="el-icon-download"
|
||||
size="mini"
|
||||
@click="handleExport"
|
||||
v-hasPermi="['csa:garden:export']"
|
||||
>导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="gardenList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="菜地编号" align="center" prop="code" />
|
||||
<el-table-column label="分区代码" align="center" prop="zoneCode" />
|
||||
<el-table-column label="菜地名称" align="center" prop="name" />
|
||||
<el-table-column label="平方米" align="center" prop="m2" />
|
||||
<el-table-column label="竣工状态" align="center" prop="isCompleted" />
|
||||
<el-table-column label="备注" align="center" prop="remark" />
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-edit"
|
||||
@click="handleUpdate(scope.row)"
|
||||
v-hasPermi="['csa:garden:edit']"
|
||||
>修改</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['csa:garden:remove']"
|
||||
>删除</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
|
||||
<!-- 添加或修改菜地划分对话框 -->
|
||||
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||||
<el-form-item label="菜地编号" prop="code">
|
||||
<el-input v-model="form.code" placeholder="请输入菜地编号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="农场分区" prop="zoneCode">
|
||||
<el-input v-model="form.zoneCode" placeholder="请输入分区代码" />
|
||||
</el-form-item>
|
||||
<el-form-item label="菜地名称" prop="name">
|
||||
<el-input v-model="form.name" placeholder="请输入菜地名称" />
|
||||
</el-form-item>
|
||||
<el-form-item label="平方米" prop="m2">
|
||||
<el-input v-model="form.m2" placeholder="请输入平方米" />
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { listGarden, getGarden, delGarden, addGarden, updateGarden } from "@/api/csa/garden";
|
||||
|
||||
export default {
|
||||
name: "Garden",
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 菜地划分表格数据
|
||||
gardenList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
code: null,
|
||||
zoneCode: null,
|
||||
name: null,
|
||||
memberId: null,
|
||||
managerId: null,
|
||||
workerId: null,
|
||||
contacterId: null,
|
||||
isFarming: null,
|
||||
isSelled: null,
|
||||
isCompleted: null,
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
code: [
|
||||
{ required: true, message: "菜地编号不能为空", trigger: "blur" }
|
||||
],
|
||||
zoneCode: [
|
||||
{ required: true, message: "分区代码不能为空", trigger: "blur" }
|
||||
],
|
||||
name: [
|
||||
{ required: true, message: "菜地名称不能为空", trigger: "blur" }
|
||||
],
|
||||
m2: [
|
||||
{ required: true, message: "平方米不能为空", trigger: "blur" }
|
||||
],
|
||||
coins: [
|
||||
{ required: true, message: "金币不能为空", trigger: "blur" }
|
||||
],
|
||||
}
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 查询菜地划分列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listGarden(this.queryParams).then(response => {
|
||||
this.gardenList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
id: null,
|
||||
code: null,
|
||||
zoneCode: null,
|
||||
name: null,
|
||||
m2: null,
|
||||
memberId: null,
|
||||
managerId: null,
|
||||
workerId: null,
|
||||
contacterId: null,
|
||||
coins: null,
|
||||
isFarming: null,
|
||||
isSelled: null,
|
||||
isCompleted: null,
|
||||
status: "0",
|
||||
delFlag: null,
|
||||
remark: null
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map(item => item.id)
|
||||
this.single = selection.length!==1
|
||||
this.multiple = !selection.length
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加菜地划分";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
const id = row.id || this.ids
|
||||
getGarden(id).then(response => {
|
||||
this.form = response.data;
|
||||
this.open = true;
|
||||
this.title = "修改菜地划分";
|
||||
});
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs["form"].validate(valid => {
|
||||
if (valid) {
|
||||
if (this.form.id != null) {
|
||||
updateGarden(this.form).then(response => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
addGarden(this.form).then(response => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const ids = row.id || this.ids;
|
||||
this.$modal.confirm('是否确认删除菜地Id为"' + ids + '"的数据项?').then(function() {
|
||||
return delGarden(ids);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download('csa/garden/export', {
|
||||
...this.queryParams
|
||||
}, `garden_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
275
ruoyi-ui/src/views/csa/zone/index.vue
Normal file
275
ruoyi-ui/src/views/csa/zone/index.vue
Normal file
@ -0,0 +1,275 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
||||
<el-form-item label="分区代码" prop="code">
|
||||
<el-input
|
||||
v-model="queryParams.code"
|
||||
placeholder="请输入分区代码"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="分区名称" prop="name">
|
||||
<el-input
|
||||
v-model="queryParams.name"
|
||||
placeholder="请输入分区名称"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="primary"
|
||||
plain
|
||||
icon="el-icon-plus"
|
||||
size="mini"
|
||||
@click="handleAdd"
|
||||
v-hasPermi="['csa:zone:add']"
|
||||
>新增</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="success"
|
||||
plain
|
||||
icon="el-icon-edit"
|
||||
size="mini"
|
||||
:disabled="single"
|
||||
@click="handleUpdate"
|
||||
v-hasPermi="['csa:zone:edit']"
|
||||
>修改</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="danger"
|
||||
plain
|
||||
icon="el-icon-delete"
|
||||
size="mini"
|
||||
:disabled="multiple"
|
||||
@click="handleDelete"
|
||||
v-hasPermi="['csa:zone:remove']"
|
||||
>删除</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="warning"
|
||||
plain
|
||||
icon="el-icon-download"
|
||||
size="mini"
|
||||
@click="handleExport"
|
||||
v-hasPermi="['csa:zone:export']"
|
||||
>导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="zoneList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="分区代码" align="center" prop="code" />
|
||||
<el-table-column label="分区名称" align="center" prop="name" />
|
||||
<el-table-column label="状态" align="center" prop="status" />
|
||||
<el-table-column label="备注" align="center" prop="remark" />
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-edit"
|
||||
@click="handleUpdate(scope.row)"
|
||||
v-hasPermi="['csa:zone:edit']"
|
||||
>修改</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
v-hasPermi="['csa:zone:remove']"
|
||||
>删除</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.pageNum"
|
||||
:limit.sync="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
|
||||
<!-- 添加或修改农场分区对话框 -->
|
||||
<el-dialog :title="title" :visible.sync="open" width="350px" append-to-body>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||||
<el-form-item label="分区代码" prop="name">
|
||||
<el-input v-model="form.code" placeholder="请输入分区代码" />
|
||||
</el-form-item>
|
||||
<el-form-item label="分区名称" prop="name">
|
||||
<el-input v-model="form.name" placeholder="请输入分区名称" />
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { listZone, getZone, delZone, addZone, updateZone } from "@/api/csa/zone";
|
||||
|
||||
export default {
|
||||
name: "Zone",
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 农场分区表格数据
|
||||
zoneList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
code: null,
|
||||
name: null,
|
||||
},
|
||||
// 是否新增
|
||||
isAdd: false,
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
code: [
|
||||
{ required: true, message: "分区代码不能为空", trigger: "blur" }
|
||||
],
|
||||
name: [
|
||||
{ required: true, message: "分区名称不能为空", trigger: "blur" }
|
||||
],
|
||||
}
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
/** 查询农场分区列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listZone(this.queryParams).then(response => {
|
||||
this.zoneList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
code: null,
|
||||
name: null,
|
||||
status: "0",
|
||||
delFlag: "0",
|
||||
remark: ""
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
handleQuery() {
|
||||
this.queryParams.pageNum = 1;
|
||||
this.getList();
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map(item => item.code)
|
||||
this.single = selection.length!==1
|
||||
this.multiple = !selection.length
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.isAdd = true;
|
||||
this.open = true;
|
||||
this.title = "添加农场分区";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
this.isAdd = false;
|
||||
const code = row.code || this.ids
|
||||
getZone(code).then(response => {
|
||||
this.form = response.data;
|
||||
this.open = true;
|
||||
this.title = "修改农场分区";
|
||||
});
|
||||
},
|
||||
/** 提交按钮 */
|
||||
submitForm() {
|
||||
this.$refs["form"].validate(valid => {
|
||||
if (valid) {
|
||||
if (!this.isAdd) {
|
||||
updateZone(this.form).then(response => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
addZone(this.form).then(response => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const codes = row.code || this.ids;
|
||||
this.$modal.confirm('是否确认删除农场分区编号为"' + codes + '"的数据项?').then(function() {
|
||||
return delZone(codes);
|
||||
}).then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
this.download('csa/zone/export', {
|
||||
...this.queryParams
|
||||
}, `zone_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
1129
sql/csa.sql
Normal file
1129
sql/csa.sql
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user