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

25 lines
452 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 SizeMappingTemplate
{
/**
* 尺码表模板内容,格式为"尺码值:维度名称:数值,尺码值:维度名称:数值"。其中数值的单位长度单位为厘米cm体重单位为公斤kg
**/
public $template_content;
/**
* 尺码表模板ID
**/
public $template_id;
/**
* 尺码表模板名称
**/
public $template_name;
}
?>