I have the following model:
我有以下模型:
class Attendance(TimeStamped):
employee_id = models.CharField(max_length=10)
punch = models.DateTimeField()
class AI have the following model:
我有以下模型:
class Attendance(TimeStamped):
employee_id = models.CharField(max_length=10)
punch = models.DateTimeField()
class A