shop-php/extend/taobao/domain/SpCampaign.php
2024-01-26 09:39:36 +08:00

40 lines
512 B
PHP
Executable File
Raw 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 SpCampaign
{
/**
* 定向计划申请链接
**/
public $sp_apply_link;
/**
* 定向计划活动ID
**/
public $sp_cid;
/**
* 定向是否锁佣0=不锁佣 1=锁佣
**/
public $sp_lock_status;
/**
* 定向计划名称
**/
public $sp_name;
/**
* 定向佣金率
**/
public $sp_rate;
/**
* 定向计划是否可用 1-可用 0-不可用
**/
public $sp_status;
}
?>