1、vo里面定义的方法  前端都是传数组。唯一区别是在 setShopId 方法里面

    public void setShopId(Long  shopId) {
    	if(shopId != null && shopId != 0L){
            setShopIds(shopId);
    	}
    }
    
    public void setShopIds(Long ... shopIds) {
        this.shopIds = shopIds;
    }

2、vo里面定义的方法  前端都是传数组。

  public void setShopId(Long  shopId) {
    	if(shopId != null && shopId != 0L){
			Long[] shopIds = new Long[]{shopId};
    		setShopIds(shopIds);
    	}
    }
    
    public void setShopIds(Long[] shopIds) {
        this.shopIds = shopIds;
    }

	public static void main(String[] args) {
		Long shopId = 1L;
		Long[] shopIds = new Long[]{shopId};
		System.out.println(JSON.toJSONString(shopIds));
	}

参考:https://www.cnblogs.com/epeter/p/5664926.html

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-31
  • 2022-03-03
  • 2021-09-04
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-08
  • 2022-12-23
  • 2021-09-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案