You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
|
|
namespace app\crm\validate;
|
|
use think\Validate;
|
|
/**
|
|
* 设置模型
|
|
*/
|
|
class CrmReceivablesPlan extends Validate{
|
|
|
|
protected $rule = [
|
|
'contract_id' => 'require',
|
|
];
|
|
protected $message = [
|
|
'contract_id.require' => '请先选择合同',
|
|
];
|
|
} |