HospitalPatient.php 576 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace app\zskk\model;
  3. use app\common\model\ZskkModel;
  4. /**
  5. * HospitalPatient 模型
  6. */
  7. class HospitalPatient extends ZskkModel
  8. {
  9. protected array $encrypts = ['ID_CARDNUM','NAME','INSUR_CARD_NO'];
  10. protected array $blurs = ['ID_CARDNUM','NAME','INSUR_CARD_NO'];
  11. protected array $blur_funs = [
  12. 'NAME' => 'blur1',
  13. 'ID_CARDNUM' => 'blur2',
  14. 'INSUR_CARD_NO' => 'blur3'
  15. ];
  16. protected array $decrypts = ['ID_CARDNUM','NAME','INSUR_CARD_NO'];
  17. public function getEncrypts() {
  18. return $this->encrypts;
  19. }
  20. }