All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.feilong.net.bot.dingtalk.message.At Maven / Gradle / Ivy

Go to download

feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.

There is a newer version: 4.3.0
Show newest version
/*
 * Copyright (C) 2008 feilong
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *         http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.feilong.net.bot.dingtalk.message;

import java.util.List;

/**
 * 你需要at 谁?.
 *
 * @author feilong
 * @since 3.1.0
 */
public class At{

    /** 被@人的手机号。 注意在text内容里要有@人的手机号. */
    private String[]     atMobiles;

    /**
     * 被@人的用户userid
     * 

* 发送消息是基于userid,这个userid跟钉钉账号还不一样,是钉钉开发者平台的userid。
* 可以通过钉钉账号的信息来获取,这里使用的是get_userid用手机号获取方式; *

* . */ private List atUserIds; /** 是否@所有人. */ private boolean isAtAll; //--------------------------------------------------------------- /** * Instantiates a new at. */ public At(){ super(); } /** * Instantiates a new at. * * @param atMobiles * the at mobiles * @param atUserIds * the at user ids * @param isAtAll * the is at all * @since 4.0.8 */ public At(String[] atMobiles, List atUserIds, boolean isAtAll){ super(); this.atMobiles = atMobiles; this.atUserIds = atUserIds; this.isAtAll = isAtAll; } /** * Instantiates a new at. * * @param isAtAll * the is at all */ public At(boolean isAtAll){ super(); this.isAtAll = isAtAll; } //--------------------------------------------------------------- /** * 设置 被@人的手机号。 注意在text内容里要有@人的手机号. * * @param atMobiles * the atMobiles to set */ public void setAtMobiles(String...atMobiles){ this.atMobiles = atMobiles; } /** * 获得 是否@所有人. * * @return the isAtAll */ public boolean getIsAtAll(){ return isAtAll; } /** * 设置 是否@所有人. * * @param isAtAll * the isAtAll to set */ public void setIsAtAll(boolean isAtAll){ this.isAtAll = isAtAll; } /** * 获得 被@人的手机号。 注意在text内容里要有@人的手机号. * * @return the atMobiles */ public String[] getAtMobiles(){ return atMobiles; } /** * 获得 被@人的用户userid . *

* 发送消息是基于userid,这个userid跟钉钉账号还不一样,是钉钉开发者平台的userid。
* 可以通过钉钉账号的信息来获取,这里使用的是get_userid用手机号获取方式; *

* * * @return the atUserIds */ public List getAtUserIds(){ return atUserIds; } /** * 设置 被@人的用户userid . *

* 发送消息是基于userid,这个userid跟钉钉账号还不一样,是钉钉开发者平台的userid。
* 可以通过钉钉账号的信息来获取,这里使用的是get_userid用手机号获取方式; *

* * @param atUserIds * the atUserIds to set */ public void setAtUserIds(List atUserIds){ this.atUserIds = atUserIds; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy