园所收费标准

This commit is contained in:
zhanglipeng
2020-12-10 16:06:08 +08:00
parent 5bdea96fd8
commit 31d69d8ded
8 changed files with 789 additions and 0 deletions

View File

@ -0,0 +1,100 @@
package com.ruoyi.project.benyi.controller;
import java.util.List;
import com.ruoyi.common.utils.SecurityUtils;
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.framework.aspectj.lang.annotation.Log;
import com.ruoyi.framework.aspectj.lang.enums.BusinessType;
import com.ruoyi.project.benyi.domain.BySchoolcharge;
import com.ruoyi.project.benyi.service.IBySchoolchargeService;
import com.ruoyi.framework.web.controller.BaseController;
import com.ruoyi.framework.web.domain.AjaxResult;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.framework.web.page.TableDataInfo;
/**
* 园所收费标准Controller
*
* @author tsbz
* @date 2020-12-10
*/
@RestController
@RequestMapping("/benyi/schoolcharge")
public class BySchoolchargeController extends BaseController {
@Autowired
private IBySchoolchargeService bySchoolchargeService;
/**
* 查询园所收费标准列表
*/
@PreAuthorize("@ss.hasPermi('benyi:schoolcharge:list')")
@GetMapping("/list")
public TableDataInfo list(BySchoolcharge bySchoolcharge) {
startPage();
List<BySchoolcharge> list = bySchoolchargeService.selectBySchoolchargeList(bySchoolcharge);
return getDataTable(list);
}
/**
* 导出园所收费标准列表
*/
@PreAuthorize("@ss.hasPermi('benyi:schoolcharge:export')")
@Log(title = "园所收费标准", businessType = BusinessType.EXPORT)
@GetMapping("/export")
public AjaxResult export(BySchoolcharge bySchoolcharge) {
List<BySchoolcharge> list = bySchoolchargeService.selectBySchoolchargeList(bySchoolcharge);
ExcelUtil<BySchoolcharge> util = new ExcelUtil<BySchoolcharge>(BySchoolcharge.class);
return util.exportExcel(list, "schoolcharge");
}
/**
* 获取园所收费标准详细信息
*/
@PreAuthorize("@ss.hasPermi('benyi:schoolcharge:query')")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id) {
return AjaxResult.success(bySchoolchargeService.selectBySchoolchargeById(id));
}
/**
* 新增园所收费标准
*/
@PreAuthorize("@ss.hasPermi('benyi:schoolcharge:edit')")
@Log(title = "园所收费标准", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody BySchoolcharge bySchoolcharge) {
bySchoolcharge.setCreateUserid(SecurityUtils.getLoginUser().getUser().getUserId());
bySchoolcharge.setDeptId(SecurityUtils.getLoginUser().getUser().getDeptId());
return toAjax(bySchoolchargeService.insertBySchoolcharge(bySchoolcharge));
}
/**
* 修改园所收费标准
*/
@PreAuthorize("@ss.hasPermi('benyi:schoolcharge:edit')")
@Log(title = "园所收费标准", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody BySchoolcharge bySchoolcharge) {
return toAjax(bySchoolchargeService.updateBySchoolcharge(bySchoolcharge));
}
/**
* 删除园所收费标准
*/
@PreAuthorize("@ss.hasPermi('benyi:schoolcharge:remove')")
@Log(title = "园所收费标准", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable Long[] ids) {
return toAjax(bySchoolchargeService.deleteBySchoolchargeByIds(ids));
}
}

View File

@ -0,0 +1,109 @@
package com.ruoyi.project.benyi.domain;
import com.ruoyi.project.system.domain.SysDept;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import com.ruoyi.framework.web.domain.BaseEntity;
/**
* 园所收费标准对象 by_schoolcharge
*
* @author tsbz
* @date 2020-12-10
*/
public class BySchoolcharge extends BaseEntity {
private static final long serialVersionUID = 1L;
/**
* 编号
*/
private Long id;
/**
* 园所id
*/
@Excel(name = "园所id")
private Long deptId;
/**
* 保育费
*/
@Excel(name = "保育费")
private Double byf;
/**
* 伙食费
*/
@Excel(name = "伙食费")
private Double hsf;
/**
* 创建人
*/
@Excel(name = "创建人")
private Long createUserid;
private SysDept dept;
public void setId(Long id) {
this.id = id;
}
public Long getId() {
return id;
}
public void setDeptId(Long deptId) {
this.deptId = deptId;
}
public Long getDeptId() {
return deptId;
}
public void setByf(Double byf) {
this.byf = byf;
}
public Double getByf() {
return byf;
}
public void setHsf(Double hsf) {
this.hsf = hsf;
}
public Double getHsf() {
return hsf;
}
public void setCreateUserid(Long createUserid) {
this.createUserid = createUserid;
}
public Long getCreateUserid() {
return createUserid;
}
public SysDept getDept() {
return dept;
}
public void setDept(SysDept dept) {
this.dept = dept;
}
@Override
public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("deptId", getDeptId())
.append("byf", getByf())
.append("hsf", getHsf())
.append("createUserid", getCreateUserid())
.append("createTime", getCreateTime())
.append("dept", getDept())
.toString();
}
}

View File

@ -0,0 +1,61 @@
package com.ruoyi.project.benyi.mapper;
import java.util.List;
import com.ruoyi.project.benyi.domain.BySchoolcharge;
/**
* 园所收费标准Mapper接口
*
* @author tsbz
* @date 2020-12-10
*/
public interface BySchoolchargeMapper {
/**
* 查询园所收费标准
*
* @param id 园所收费标准ID
* @return 园所收费标准
*/
public BySchoolcharge selectBySchoolchargeById(Long id);
/**
* 查询园所收费标准列表
*
* @param bySchoolcharge 园所收费标准
* @return 园所收费标准集合
*/
public List<BySchoolcharge> selectBySchoolchargeList(BySchoolcharge bySchoolcharge);
/**
* 新增园所收费标准
*
* @param bySchoolcharge 园所收费标准
* @return 结果
*/
public int insertBySchoolcharge(BySchoolcharge bySchoolcharge);
/**
* 修改园所收费标准
*
* @param bySchoolcharge 园所收费标准
* @return 结果
*/
public int updateBySchoolcharge(BySchoolcharge bySchoolcharge);
/**
* 删除园所收费标准
*
* @param id 园所收费标准ID
* @return 结果
*/
public int deleteBySchoolchargeById(Long id);
/**
* 批量删除园所收费标准
*
* @param ids 需要删除的数据ID
* @return 结果
*/
public int deleteBySchoolchargeByIds(Long[] ids);
}

View File

@ -0,0 +1,61 @@
package com.ruoyi.project.benyi.service;
import java.util.List;
import com.ruoyi.project.benyi.domain.BySchoolcharge;
/**
* 园所收费标准Service接口
*
* @author tsbz
* @date 2020-12-10
*/
public interface IBySchoolchargeService {
/**
* 查询园所收费标准
*
* @param id 园所收费标准ID
* @return 园所收费标准
*/
public BySchoolcharge selectBySchoolchargeById(Long id);
/**
* 查询园所收费标准列表
*
* @param bySchoolcharge 园所收费标准
* @return 园所收费标准集合
*/
public List<BySchoolcharge> selectBySchoolchargeList(BySchoolcharge bySchoolcharge);
/**
* 新增园所收费标准
*
* @param bySchoolcharge 园所收费标准
* @return 结果
*/
public int insertBySchoolcharge(BySchoolcharge bySchoolcharge);
/**
* 修改园所收费标准
*
* @param bySchoolcharge 园所收费标准
* @return 结果
*/
public int updateBySchoolcharge(BySchoolcharge bySchoolcharge);
/**
* 批量删除园所收费标准
*
* @param ids 需要删除的园所收费标准ID
* @return 结果
*/
public int deleteBySchoolchargeByIds(Long[] ids);
/**
* 删除园所收费标准信息
*
* @param id 园所收费标准ID
* @return 结果
*/
public int deleteBySchoolchargeById(Long id);
}

View File

@ -0,0 +1,91 @@
package com.ruoyi.project.benyi.service.impl;
import java.util.List;
import com.ruoyi.common.utils.DateUtils;
import com.ruoyi.framework.aspectj.lang.annotation.DataScope;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.project.benyi.mapper.BySchoolchargeMapper;
import com.ruoyi.project.benyi.domain.BySchoolcharge;
import com.ruoyi.project.benyi.service.IBySchoolchargeService;
/**
* 园所收费标准Service业务层处理
*
* @author tsbz
* @date 2020-12-10
*/
@Service
public class BySchoolchargeServiceImpl implements IBySchoolchargeService {
@Autowired
private BySchoolchargeMapper bySchoolchargeMapper;
/**
* 查询园所收费标准
*
* @param id 园所收费标准ID
* @return 园所收费标准
*/
@Override
public BySchoolcharge selectBySchoolchargeById(Long id) {
return bySchoolchargeMapper.selectBySchoolchargeById(id);
}
/**
* 查询园所收费标准列表
*
* @param bySchoolcharge 园所收费标准
* @return 园所收费标准
*/
@Override
@DataScope(deptAlias = "b")
public List<BySchoolcharge> selectBySchoolchargeList(BySchoolcharge bySchoolcharge) {
return bySchoolchargeMapper.selectBySchoolchargeList(bySchoolcharge);
}
/**
* 新增园所收费标准
*
* @param bySchoolcharge 园所收费标准
* @return 结果
*/
@Override
public int insertBySchoolcharge(BySchoolcharge bySchoolcharge) {
bySchoolcharge.setCreateTime(DateUtils.getNowDate());
return bySchoolchargeMapper.insertBySchoolcharge(bySchoolcharge);
}
/**
* 修改园所收费标准
*
* @param bySchoolcharge 园所收费标准
* @return 结果
*/
@Override
public int updateBySchoolcharge(BySchoolcharge bySchoolcharge) {
return bySchoolchargeMapper.updateBySchoolcharge(bySchoolcharge);
}
/**
* 批量删除园所收费标准
*
* @param ids 需要删除的园所收费标准ID
* @return 结果
*/
@Override
public int deleteBySchoolchargeByIds(Long[] ids) {
return bySchoolchargeMapper.deleteBySchoolchargeByIds(ids);
}
/**
* 删除园所收费标准信息
*
* @param id 园所收费标准ID
* @return 结果
*/
@Override
public int deleteBySchoolchargeById(Long id) {
return bySchoolchargeMapper.deleteBySchoolchargeById(id);
}
}

View 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.ruoyi.project.benyi.mapper.BySchoolchargeMapper">
<resultMap type="BySchoolcharge" id="BySchoolchargeResult">
<result property="id" column="id"/>
<result property="deptId" column="dept_id"/>
<result property="byf" column="byf"/>
<result property="hsf" column="hsf"/>
<result property="createUserid" column="create_userid"/>
<result property="createTime" column="create_time"/>
<association property="dept" column="dept_id" javaType="SysDept" resultMap="deptResult"/>
</resultMap>
<resultMap id="deptResult" type="SysDept">
<id property="deptId" column="dept_id"/>
<result property="parentId" column="parent_id"/>
<result property="deptName" column="dept_name"/>
<result property="orderNum" column="order_num"/>
<result property="leader" column="leader"/>
<result property="status" column="dept_status"/>
</resultMap>
<sql id="selectBySchoolchargeVo">
select a.id, a.dept_id, a.byf, a.hsf, a.create_userid, a.create_time,b.dept_name from by_schoolcharge a
right join sys_dept b on a.dept_id=b.dept_id
</sql>
<select id="selectBySchoolchargeList" parameterType="BySchoolcharge" resultMap="BySchoolchargeResult">
<include refid="selectBySchoolchargeVo"/>
where school_id is not null and del_flag=0
<if test="byf != null ">and byf = #{byf}</if>
<if test="hsf != null ">and hsf = #{hsf}</if>
<if test="createUserid != null ">and create_userid = #{createUserid}</if>
<!-- 数据范围过滤 -->
${dataScope}
</select>
<select id="selectBySchoolchargeById" parameterType="Long" resultMap="BySchoolchargeResult">
<include refid="selectBySchoolchargeVo"/>
where a.id = #{id}
</select>
<insert id="insertBySchoolcharge" parameterType="BySchoolcharge" useGeneratedKeys="true" keyProperty="id">
insert into by_schoolcharge
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="deptId != null ">dept_id,</if>
<if test="byf != null ">byf,</if>
<if test="hsf != null ">hsf,</if>
<if test="createUserid != null ">create_userid,</if>
<if test="createTime != null ">create_time,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="deptId != null ">#{deptId},</if>
<if test="byf != null ">#{byf},</if>
<if test="hsf != null ">#{hsf},</if>
<if test="createUserid != null ">#{createUserid},</if>
<if test="createTime != null ">#{createTime},</if>
</trim>
</insert>
<update id="updateBySchoolcharge" parameterType="BySchoolcharge">
update by_schoolcharge
<trim prefix="SET" suffixOverrides=",">
<if test="deptId != null ">dept_id = #{deptId},</if>
<if test="byf != null ">byf = #{byf},</if>
<if test="hsf != null ">hsf = #{hsf},</if>
<if test="createUserid != null ">create_userid = #{createUserid},</if>
<if test="createTime != null ">create_time = #{createTime},</if>
</trim>
where id = #{id}
</update>
<delete id="deleteBySchoolchargeById" parameterType="Long">
delete from by_schoolcharge where id = #{id}
</delete>
<delete id="deleteBySchoolchargeByIds" parameterType="String">
delete from by_schoolcharge where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>