记得上下班打卡 | git大法好,push需谨慎

Commit e372406a authored by jiangxiulong's avatar jiangxiulong

sendOfMid targetId 必填

parent aca96511
......@@ -47,12 +47,12 @@ public class SweetAppletSubMsgController {
@ApiOperation("发送模版消息OfMid, 特殊情况手动调用使用")
@ApiImplicitParams({
@ApiImplicitParam(type = "form", dataType = "String", name = "midList", value = "mid列表逗号分割", required = true),
@ApiImplicitParam(type = "form", dataType = "String", name = "targetId", value = "演出ID"),
@ApiImplicitParam(type = "form", dataType = "String", name = "targetId", value = "演出ID", required = true),
@ApiImplicitParam(type = "form", dataType = "Integer", name = "timeType", value = "是否判断演出时间 1判断 2不判断"),
})
public ResponseDto sendOfMid(
@RequestParam String midList,
@RequestParam(defaultValue = "") String targetId,
@RequestParam() String targetId,
@RequestParam(defaultValue = "1") Integer timeType
) {
return subMsgService.sendOfMid(midList, targetId, timeType);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment