403Webshell
Server IP : 103.234.187.230  /  Your IP : 216.73.216.216
Web Server : Apache
System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/junkdata/logs.hellogtx.com/hellogtxlogs/call_center/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/junkdata/logs.hellogtx.com/hellogtxlogs/call_center/models.py
from django.db import models
from django.contrib.auth.models import User
from datetime import datetime

StatusType = (
    (1, 'Pending'),
    (2, 'Completed'),
    (3, 'Rejected')
)


class TbCallCenter(models.Model):
    call_sys_id = models.BigAutoField(db_column='CallSysId', primary_key=True)
    security_key = models.CharField(max_length=100, null=True, blank=True)
    caller_id = models.CharField(max_length=100, null=True, blank=True)
    received_id = models.CharField(max_length=100, null=True, blank=True)
    call_status = models.CharField(max_length=100, null=True, blank=True)
    recording_url = models.CharField(max_length=1000, null=True, blank=True)
    unique_id = models.CharField(max_length=100, null=True, blank=True)
    duration = models.CharField(max_length=100, null=True, blank=True)
    date_time = models.CharField(max_length=100, null=True, blank=True)
    call_type = models.CharField(max_length=100, null=True, blank=True)
    status = models.IntegerField(choices=StatusType, default=1)
    created_on = models.DateTimeField(default=datetime.now, db_index=True, blank=True, null=True, editable=False)
    updated_on = models.DateField(default=datetime.now, db_index=True, blank=True, null=True, editable=False)
    is_active = models.BooleanField(default=True, editable=False)
    is_mark_for_delete = models.BooleanField(default=False)

    class Meta:
        db_table = 'TB_Call_Center_Logs'
        verbose_name = "Call Center Logs History"
        verbose_name_plural = "Call Center Logs History"

    def __str__(self):
        return self.unique_id


Youez - 2016 - github.com/yon3zu
LinuXploit