REAPI/extend/sdk/taobao/top/domain/ServiceAttributeDto.php
2024-09-29 15:43:18 +08:00

30 lines
526 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* 服务属性定义
* @author auto create
*/
class ServiceAttributeDto
{
/**
* 属性的值,用户实际传入的值
**/
public $attribute_code;
/**
* 属性的名称,可以用于前端的展示
**/
public $attribute_name;
/**
* 属性的类型,可能值有 [number, string, enum]
**/
public $attribute_type;
/**
* 枚举类型的枚举值key为用户选中的需要传值的数据value为对应的描述可以作为前端的展示
**/
public $type_desc;
}
?>