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.
 
 
 
 
 
 

69 regels
1.8 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use Yii;
  4. /**
  5. * This is the model class for table "order_finance_reparations".
  6. *
  7. * @property integer $order_id
  8. * @property string $reparations
  9. * @property integer $reparation_type
  10. * @property integer $cancel_flag
  11. * @property integer $user_id
  12. * @property string $memo
  13. * @property string $date
  14. * @property string $create_time
  15. * @property string $memo_title
  16. * @property integer $memo_id
  17. */
  18. class OrderFinanceReparations extends \yii\db\ActiveRecord
  19. {
  20. /**
  21. * @inheritdoc
  22. */
  23. public static function tableName()
  24. {
  25. return 'order_finance_reparations';
  26. }
  27. /**
  28. * @inheritdoc
  29. */
  30. public function rules()
  31. {
  32. return [
  33. [['order_id', 'reparations', 'user_id', 'date'], 'required'],
  34. [['order_id', 'reparation_type', 'cancel_flag', 'user_id', 'memo_id'], 'integer'],
  35. [['reparations'], 'number'],
  36. [['memo'], 'string'],
  37. [['date', 'create_time'], 'safe'],
  38. [['memo_title'], 'string', 'max' => 255],
  39. [['order_id'], 'unique'],
  40. ];
  41. }
  42. /**
  43. * @inheritdoc
  44. */
  45. public function attributeLabels()
  46. {
  47. return [
  48. 'order_id' => '订单ID',
  49. 'reparations' => '赔款金额',
  50. 'reparation_type' => '赔付种类:1蜘蛛赔付给客户 2.供应商赔付给蜘蛛',
  51. 'cancel_flag' => '删除flag',
  52. 'user_id' => '操作员ID',
  53. 'memo' => '备注信息',
  54. 'date' => '赔款时间',
  55. 'create_time' => '创建时间',
  56. 'memo_title' => 'Memo Title',
  57. 'memo_id' => '原因ID',
  58. ];
  59. }
  60. public function getOrderMain(){
  61. return $this->hasOne(OrderMain::className(),['PARENT_ORDER_ID'=>'order_id']);
  62. }
  63. }