| | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.annotation.Excel; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | |
| | | * @date 2023-05-25 |
| | | */ |
| | | @Data |
| | | @ApiModel(value = "DingTalkReqVo", description = "钉钉消息发送") |
| | | public class DingTalkReqVo extends BaseEntity { |
| | | |
| | | /** |
| | | * 发送内容 |
| | | */ |
| | | @ApiModelProperty(value = "发送内容") |
| | | private List<String> contents; |
| | | |
| | | /** |
| | | * 用户钉钉号 |
| | | */ |
| | | @ApiModelProperty(value = "用户钉钉号") |
| | | private String userId; |
| | | |
| | | /** |
| | | * 部门ID |
| | | */ |
| | | @ApiModelProperty(value = "部门ID") |
| | | private String deptId; |
| | | } |