Your Name
2023-03-25 ac9d7e2b74713e436dc0d7c08fd05a75f57fdbcb
service-user/src/main/java/com/java110/user/cmd/menuUser/SaveMenuUserCmd.java
@@ -19,7 +19,7 @@
import com.java110.core.annotation.Java110Cmd;
import com.java110.core.annotation.Java110Transactional;
import com.java110.core.context.ICmdDataFlowContext;
import com.java110.core.event.cmd.AbstractServiceCmdListener;
import com.java110.core.event.cmd.Cmd;
import com.java110.core.event.cmd.CmdEvent;
import com.java110.core.factory.GenerateCodeFactory;
import com.java110.dto.menu.MenuDto;
@@ -47,7 +47,7 @@
 * // modify by 张三 at 2021-09-12 第10行在某种场景下存在某种bug 需要修复,注释10至20行 加入 20行至30行
 */
@Java110Cmd(serviceCode = "menuUser.saveMenuUser")
public class SaveMenuUserCmd extends AbstractServiceCmdListener {
public class SaveMenuUserCmd extends Cmd {
    private static Logger logger = LoggerFactory.getLogger(SaveMenuUserCmd.class);
@@ -63,9 +63,7 @@
    public void validate(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) {
        Assert.hasKeyAndValue(reqJson, "mId", "请求报文中未包含mId");
        Assert.hasKeyAndValue(reqJson, "userId", "请求报文中未包含userId");
        Assert.hasKeyAndValue(reqJson, "name", "请求报文中未包含name");
        Assert.hasKeyAndValue(reqJson, "icon", "请求报文中未包含icon");
        Assert.hasKeyAndValue(reqJson, "url", "请求报文中未包含url");
        Assert.hasKeyAndValue(reqJson, "seq", "请求报文中未包含seq");
    }