首页 > 技术文章 > 带Boolean类型的参数的接口用postman测试时传参问题

j-liu3323 2019-04-18 15:04 原文

带Boolean类型的参数的接口用postman测试时传参问题

 

@Data
public class ATest
{
    private Boolean isCommit;
}

 

postman 测试时传参示范
{ "isCommit": true --错误示范 "commit": true--正确示范 }

  

 

推荐阅读