1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- /**
- * 返回数据
- * @author auto create
- */
- class CarrierDto
- {
-
- /**
- * 载具code
- **/
- public $carrier_code;
-
- /**
- * 载具id
- **/
- public $carrier_id;
-
- /**
- * 载具名称
- **/
- public $carrier_name;
-
- /**
- * 载具类型
- **/
- public $carrier_type;
-
- /**
- * 载具类型名称
- **/
- public $carrier_type_name;
-
- /**
- * 是否可用
- **/
- public $enabled;
-
- /**
- * 状态
- **/
- public $status;
-
- /**
- * 租户id
- **/
- public $tenant_id;
- }
- ?>
|