| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- namespace app\model\saas;
- use app\extra\basic\Model;
- /**
- * @property integer $id (主键)
- * @property mixed $poi_id
- * @property string $company_name
- * @property mixed $company_number
- * @property string $company_sub_name
- * @property string $company_license 营业执照
- * @property string $city_name
- * @property mixed $city_code
- * @property string $address
- * @property string $legal_name 法人姓名
- * @property mixed $legal_mobile
- * @property mixed $legal_idcard 身份证号
- * @property string $legal_id_front 正面
- * @property string $legal_id_back 反面
- * @property mixed $email
- * @property mixed $bank_number 对公帐号
- * @property string $bank_code 开户行编码
- * @property string $bank_img 开户许可证照片
- * @property integer $status
- * @property string $remark
- * @property mixed $last_at
- * @property mixed $create_at
- */
- class SaasStoreOpen extends Model
- {
- /**
- * The connection name for the model.
- *
- * @var string|null
- */
- protected $connection = 'mysql';
-
- /**
- * The table associated with the model.
- *
- * @var string
- */
- protected string $table = "saas_store_open";
-
- /**
- * The primary key associated with the table.
- *
- * @var string
- */
- protected string $primaryKey = "id";
-
- /**
- * Indicates if the model should be timestamped.
- *
- * @var bool
- */
- public bool $timestamps = false;
- }
|