增加招商经理同意面试预约操作日志记录

This commit is contained in:
feng.li
2023-12-12 17:30:57 +08:00
parent 85991fcc15
commit af8727ff6e
6 changed files with 45 additions and 23 deletions

View File

@@ -0,0 +1,26 @@
package com.cool.store.dto.log;
import lombok.Builder;
import lombok.Data;
/**
* @author Fun Li 2023/12/12 15:48
* @version 1.0
*/
@Data
@Builder
public class ApproveAppointmentDTO {
private String operateTime;
private String operateUsername;
private String operateUserId;
private String mobile;
private String rawInterviewDateTime;
private String interviewPlanId;
}