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.
23 lines
522 B
23 lines
522 B
<?php |
|
|
|
namespace App\Models; |
|
|
|
use Dcat\Admin\Traits\HasDateTimeFormatter; |
|
|
|
use Illuminate\Database\Eloquent\Model; |
|
|
|
class LoanStudentsList extends Model |
|
{ |
|
use HasDateTimeFormatter; |
|
protected $table = 'loan_students_list'; |
|
public $timestamps = false; |
|
|
|
const IS_PUSH_YES = 2; //已推送 |
|
const IS_PUSH_NO = 1; //未推送 |
|
|
|
const IS_FIVE_YEAR_YES = 2; //五年制 |
|
const IS_FIVE_YEAR_NO = 1; //非五年制 |
|
|
|
const FYLX_JH = 0; //费用类型:0贷款计划 1贷款到账 |
|
const FYLX_DZ = 1; |
|
}
|
|
|