Commit 6c076577 by 何文超

去掉一些不必要的属性类型

parent 7ac03c9e
......@@ -33,6 +33,9 @@ public class GoodsPropertyController {
public RestResponse propertyList(int pageSize, int currentPage, String search, Long goodsDomainId) {
List<String> arrayList = new ArrayList<>();
arrayList.add(Constant.PROPERTY_TYPE_TEXT);
arrayList.add(Constant.PROPERTY_TYPE_TIME);
arrayList.add(Constant.PROPERTY_TYPE_CURRENCY);
arrayList.add(Constant.PROPERTY_TYPE_PERCENT);
ServiceResponse<Page<PropertyDTO>> serviceResponse = propertyApiService.findPropertyExceptType(currentPage, pageSize, goodsDomainId, arrayList,search);
if (!serviceResponse.isSuccess()) {
return RestResponse.failure(serviceResponse.getCode(), serviceResponse.getMessage());
......
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