Beneficiary must be able to add to favorite a Call
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package net.gepafin.tendermanagement.model.request;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
@NoArgsConstructor
|
||||
@Data
|
||||
public class BeneficiaryPreferredCallReq {
|
||||
|
||||
private Long companyId;
|
||||
private Long callId;
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
package net.gepafin.tendermanagement.model.response;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import net.gepafin.tendermanagement.enums.BeneficiaryCallStatus;
|
||||
import net.gepafin.tendermanagement.enums.UserStatusEnum;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@NoArgsConstructor
|
||||
@Data
|
||||
public class BeneficiaryPreferredCallResponseBean {
|
||||
|
||||
|
||||
private Long id;
|
||||
private Long beneficiaryId;
|
||||
private Long userId;
|
||||
private Long companyId;
|
||||
private Long callId;
|
||||
private BeneficiaryCallStatus status;
|
||||
private LocalDateTime createdDate;
|
||||
private LocalDateTime updatedDate;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user