IGetAttrValueBMO.java 339 B

1234567891011121314151617
  1. package com.java110.common.bmo.attrValue;
  2. import com.java110.dto.attrValue.AttrValueDto;
  3. import org.springframework.http.ResponseEntity;
  4. public interface IGetAttrValueBMO {
  5. /**
  6. * 查询属性值
  7. * add by wuxw
  8. * @param attrValueDto
  9. * @return
  10. */
  11. ResponseEntity<String> get(AttrValueDto attrValueDto);
  12. }