Commit f70bda75 by Mahjong

专家处理商机,更新预约状态,给客户发送预约成功短信,自动添加当前商机到日程1

parent 5234dba5
package com.yd.dal.entity.marketing;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
@Data
public class AgSfpAppointmentRecord implements Serializable{
private static final long serialVersionUID = 1L;
private Long id;//serial idPRIauto_increment
private Long sfpMainId;//主表ID
private Long userId;//客户id ag_sfp_user.id
private Integer appointmentType;//预约类型
private Integer customerSource;//客户来源
private String expecteTime;//客户期望沟通时间
private Integer status;//预约确认状态 0-待确认 1-已确认
private Integer isComplete;//是否沟通 0-未沟通 1-已沟通
private String expert;//专家
private Integer isActive;//1=active 0=inactive
private String remark;//备注
private Date createdAt;//创建时间
private String createdBy;//创建人
private Date updatedAt;//修改时间
private String updatedBy;//修改人
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment