feat: 流程设计模块更新用户类型
This commit is contained in:
83
ruoyi-system/src/main/java/com/ruoyi/system/domain/SysExpression.java
Executable file
83
ruoyi-system/src/main/java/com/ruoyi/system/domain/SysExpression.java
Executable file
@@ -0,0 +1,83 @@
|
||||
package com.ruoyi.system.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;
|
||||
|
||||
/**
|
||||
* 流程达式对象 sys_expression
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-12-12
|
||||
*/
|
||||
public class SysExpression extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 表单主键 */
|
||||
private Long id;
|
||||
|
||||
/** 表达式名称 */
|
||||
@Excel(name = "表达式名称")
|
||||
private String name;
|
||||
|
||||
/** 表达式内容 */
|
||||
@Excel(name = "表达式内容")
|
||||
private String expression;
|
||||
|
||||
/** 状态 */
|
||||
private Integer status;
|
||||
|
||||
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 setExpression(String expression)
|
||||
{
|
||||
this.expression = expression;
|
||||
}
|
||||
|
||||
public String getExpression()
|
||||
{
|
||||
return expression;
|
||||
}
|
||||
public void setStatus(Integer status)
|
||||
{
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getStatus()
|
||||
{
|
||||
return status;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("id", getId())
|
||||
.append("name", getName())
|
||||
.append("expression", getExpression())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("status", getStatus())
|
||||
.append("remark", getRemark())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
61
ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysExpressionMapper.java
Executable file
61
ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysExpressionMapper.java
Executable file
@@ -0,0 +1,61 @@
|
||||
package com.ruoyi.system.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.system.domain.SysExpression;
|
||||
|
||||
/**
|
||||
* 流程达式Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-12-12
|
||||
*/
|
||||
public interface SysExpressionMapper
|
||||
{
|
||||
/**
|
||||
* 查询流程达式
|
||||
*
|
||||
* @param id 流程达式主键
|
||||
* @return 流程达式
|
||||
*/
|
||||
public SysExpression selectSysExpressionById(Long id);
|
||||
|
||||
/**
|
||||
* 查询流程达式列表
|
||||
*
|
||||
* @param sysExpression 流程达式
|
||||
* @return 流程达式集合
|
||||
*/
|
||||
public List<SysExpression> selectSysExpressionList(SysExpression sysExpression);
|
||||
|
||||
/**
|
||||
* 新增流程达式
|
||||
*
|
||||
* @param sysExpression 流程达式
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertSysExpression(SysExpression sysExpression);
|
||||
|
||||
/**
|
||||
* 修改流程达式
|
||||
*
|
||||
* @param sysExpression 流程达式
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateSysExpression(SysExpression sysExpression);
|
||||
|
||||
/**
|
||||
* 删除流程达式
|
||||
*
|
||||
* @param id 流程达式主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteSysExpressionById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除流程达式
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteSysExpressionByIds(Long[] ids);
|
||||
}
|
||||
@@ -0,0 +1,61 @@
|
||||
package com.ruoyi.system.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.system.domain.SysExpression;
|
||||
|
||||
/**
|
||||
* 流程达式Service接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-12-12
|
||||
*/
|
||||
public interface ISysExpressionService
|
||||
{
|
||||
/**
|
||||
* 查询流程达式
|
||||
*
|
||||
* @param id 流程达式主键
|
||||
* @return 流程达式
|
||||
*/
|
||||
public SysExpression selectSysExpressionById(Long id);
|
||||
|
||||
/**
|
||||
* 查询流程达式列表
|
||||
*
|
||||
* @param sysExpression 流程达式
|
||||
* @return 流程达式集合
|
||||
*/
|
||||
public List<SysExpression> selectSysExpressionList(SysExpression sysExpression);
|
||||
|
||||
/**
|
||||
* 新增流程达式
|
||||
*
|
||||
* @param sysExpression 流程达式
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertSysExpression(SysExpression sysExpression);
|
||||
|
||||
/**
|
||||
* 修改流程达式
|
||||
*
|
||||
* @param sysExpression 流程达式
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateSysExpression(SysExpression sysExpression);
|
||||
|
||||
/**
|
||||
* 批量删除流程达式
|
||||
*
|
||||
* @param ids 需要删除的流程达式主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteSysExpressionByIds(Long[] ids);
|
||||
|
||||
/**
|
||||
* 删除流程达式信息
|
||||
*
|
||||
* @param id 流程达式主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteSysExpressionById(Long id);
|
||||
}
|
||||
@@ -0,0 +1,96 @@
|
||||
package com.ruoyi.system.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.common.utils.DateUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.system.mapper.SysExpressionMapper;
|
||||
import com.ruoyi.system.domain.SysExpression;
|
||||
import com.ruoyi.system.service.ISysExpressionService;
|
||||
|
||||
/**
|
||||
* 流程达式Service业务层处理
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2022-12-12
|
||||
*/
|
||||
@Service
|
||||
public class SysExpressionServiceImpl implements ISysExpressionService
|
||||
{
|
||||
@Autowired
|
||||
private SysExpressionMapper sysExpressionMapper;
|
||||
|
||||
/**
|
||||
* 查询流程达式
|
||||
*
|
||||
* @param id 流程达式主键
|
||||
* @return 流程达式
|
||||
*/
|
||||
@Override
|
||||
public SysExpression selectSysExpressionById(Long id)
|
||||
{
|
||||
return sysExpressionMapper.selectSysExpressionById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询流程达式列表
|
||||
*
|
||||
* @param sysExpression 流程达式
|
||||
* @return 流程达式
|
||||
*/
|
||||
@Override
|
||||
public List<SysExpression> selectSysExpressionList(SysExpression sysExpression)
|
||||
{
|
||||
return sysExpressionMapper.selectSysExpressionList(sysExpression);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增流程达式
|
||||
*
|
||||
* @param sysExpression 流程达式
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int insertSysExpression(SysExpression sysExpression)
|
||||
{
|
||||
sysExpression.setCreateTime(DateUtils.getNowDate());
|
||||
return sysExpressionMapper.insertSysExpression(sysExpression);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改流程达式
|
||||
*
|
||||
* @param sysExpression 流程达式
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int updateSysExpression(SysExpression sysExpression)
|
||||
{
|
||||
sysExpression.setUpdateTime(DateUtils.getNowDate());
|
||||
return sysExpressionMapper.updateSysExpression(sysExpression);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除流程达式
|
||||
*
|
||||
* @param ids 需要删除的流程达式主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int deleteSysExpressionByIds(Long[] ids)
|
||||
{
|
||||
return sysExpressionMapper.deleteSysExpressionByIds(ids);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除流程达式信息
|
||||
*
|
||||
* @param id 流程达式主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int deleteSysExpressionById(Long id)
|
||||
{
|
||||
return sysExpressionMapper.deleteSysExpressionById(id);
|
||||
}
|
||||
}
|
||||
86
ruoyi-system/src/main/resources/mapper/system/SysExpressionMapper.xml
Executable file
86
ruoyi-system/src/main/resources/mapper/system/SysExpressionMapper.xml
Executable file
@@ -0,0 +1,86 @@
|
||||
<?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.system.mapper.SysExpressionMapper">
|
||||
|
||||
<resultMap type="SysExpression" id="SysExpressionResult">
|
||||
<result property="id" column="id" />
|
||||
<result property="name" column="name" />
|
||||
<result property="expression" column="expression" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="updateBy" column="update_by" />
|
||||
<result property="status" column="status" />
|
||||
<result property="remark" column="remark" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectSysExpressionVo">
|
||||
select id, name, expression, create_time, update_time, create_by, update_by, status, remark from sys_expression
|
||||
</sql>
|
||||
|
||||
<select id="selectSysExpressionList" parameterType="SysExpression" resultMap="SysExpressionResult">
|
||||
<include refid="selectSysExpressionVo"/>
|
||||
<where>
|
||||
<if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
|
||||
<if test="expression != null and expression != ''"> and expression = #{expression}</if>
|
||||
<if test="status != null "> and status = #{status}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectSysExpressionById" parameterType="Long" resultMap="SysExpressionResult">
|
||||
<include refid="selectSysExpressionVo"/>
|
||||
where id = #{id}
|
||||
</select>
|
||||
|
||||
<insert id="insertSysExpression" parameterType="SysExpression" useGeneratedKeys="true" keyProperty="id">
|
||||
insert into sys_expression
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="name != null">name,</if>
|
||||
<if test="expression != null">expression,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="updateBy != null">update_by,</if>
|
||||
<if test="status != null">status,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="name != null">#{name},</if>
|
||||
<if test="expression != null">#{expression},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
<if test="updateTime != null">#{updateTime},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="updateBy != null">#{updateBy},</if>
|
||||
<if test="status != null">#{status},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateSysExpression" parameterType="SysExpression">
|
||||
update sys_expression
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="name != null">name = #{name},</if>
|
||||
<if test="expression != null">expression = #{expression},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||
<if test="status != null">status = #{status},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
||||
<delete id="deleteSysExpressionById" parameterType="Long">
|
||||
delete from sys_expression where id = #{id}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteSysExpressionByIds" parameterType="String">
|
||||
delete from sys_expression where id in
|
||||
<foreach item="id" collection="array" open="(" separator="," close=")">
|
||||
#{id}
|
||||
</foreach>
|
||||
</delete>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user