膳逸:修改活动功能开发文档

概述

本开发文档详细描述了MIS系统中的修改活动接口的设计与实现。通过该接口,用户可以提交需要修改的活动信息,系统会更新数据库中的活动记录。

功能需求

  1. 修改活动:用户可以通过提交活动的详细信息来修改现有活动。
  2. 权限控制:确保只有具有特定权限的用户可以访问此接口并修改活动。

接口详情

修改活动接口

接口路径

/mis_user/updateActivity

请求方法

POST

接口描述

该接口用于修改现有的活动信息。用户提交活动的详细信息后,系统会根据活动ID更新数据库中的活动记录。

POST 修改活动

POST /mis_user/updateActivity

前端返回修改后的活动信息,后端更新互动信息

Body 请求参数

{
  "id": 5,
  "name": "修改测试活动",
  "description": "修改测试活动",
  "requirements": "修改测试活动",
  "startTime": "2010-01-02",
  "endTime": "2030-01-03",
  "reward": "修改奖励",
  "status": "2",
  "picture": "http://dummyimage.com/400x400"
}

请求参数

名称位置类型必选说明
Tokenheaderstringnone
bodybodyobjectnone
» idbodyintegernone
» namebodystringnone
» descriptionbodystringnone
» requirementsbodystringnone
» startTimebodystringnone
» endTimebodystringnone
» rewardbodystringnone
» statusbodystringnone
» picturebodystringnone

返回示例

成功

{
  "msg": "success",
  "code": 200
}

返回结果

状态码状态码含义说明数据模型
200OK成功Inline

返回数据结构

状态码 200

名称类型必选约束中文名说明
» codestringtruenonenone
» msgstringtruenonenone

实现细节

控制器代码

    @PostMapping("/updateActivity")
    @SaCheckLogin
    @SaCheckPermission(value = {"ROOT", "ACTIVITY:UPDATE"}, mode = SaMode.OR)
    public R updateActivity(@RequestBody @Valid InsertOrUpdateActivityForm form) {
        Map param = BeanUtil.beanToMap(form);
        boolean flag = misUserService.updateActivity(param);
        if (flag){
            return R.ok();
        }else {
            return R.error("修改活动出错");
        }

表单验证类

@Data
public class InsertOrUpdateActivityForm {

    private Integer id;

    @NotNull(message = "活动名称不能为空")
    @Size(max = 20, message = "活动名称长度不能超过20个字符")
    private String name;

    @NotNull(message = "描述不能为空")
    @Size(max = 200, message = "描述长度不能超过200个字符")
    private String description;

    @NotNull(message = "要求不能为空")
    @Size(max = 255, message = "要求长度不能超过255个字符")
    private String requirements;


    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private DateTime startTime;

    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private DateTime endTime;

    @NotNull(message = "奖励不能为空")
    @Size(max = 255, message = "奖励长度不能超过255个字符")
    private String reward;

    @NotNull(message = "图片不能为空")
    private String picture;

    @NotNull(message = "status状态码不能为空")
    @Range(min = 0, max = 2, message = "status状态码不正确,0未开始,1进行中,2已结束")
    private Byte status;

    @NotNull(message = "countDay状态码不能为空")
    private Integer countDay;

}

Mapper XML

   <update id="updateActivity" parameterType="Map">
        UPDATE activity
        <set>
            <if test="name != null and name != ''">
                name = #{name},
            </if>
            <if test="description != null and description != ''">
                description = #{description},
            </if>
            <if test="requirements != null and requirements != ''">
                requirements = #{requirements},
            </if>
            <if test="startTime != null">
                start_time = #{startTime},
            </if>
            <if test="endTime != null">
                end_time = #{endTime},
            </if>
            <if test="reward != null and reward != ''">
                reward = #{reward},
            </if>
            <if test="picture != null and picture != ''">
                picture = #{picture},
            </if>
            <if test="status != null">
                status = #{status}
            </if>
        </set>
        WHERE id = #{id}
    </update>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值