| | |
| | | import com.ruoyi.system.api.domain.dto.MerBaseDto; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.util.Date; |
| | | |
| | |
| | | @Data |
| | | public class MerFollowMemberTaskDto extends MerBaseDto { |
| | | |
| | | @ApiModelProperty(name = "任务id") |
| | | @ApiModelProperty(value = "任务id") |
| | | private String taskId; |
| | | |
| | | @ApiModelProperty("跟踪类型1电话2手动") |
| | |
| | | private String callPhone; |
| | | |
| | | @ApiModelProperty("电话时间") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00") |
| | | private Date callTime; |
| | | |