CustomCustomerServiceCardAttachment.java 489 Bytes
Newer Older
konghaorui committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
package com.yidianling.im.session.extension;

import com.alibaba.fastjson.JSONObject;

/**
 * 客服名片
 * Created by xj on 2019/10/29.
 */

public class CustomCustomerServiceCardAttachment extends CustomAttachment {

    public CustomCustomerServiceCardAttachment() {
        super(CustomAttachmentType.TYPE_CUSTOMER_SERVICE);
    }

    @Override
    protected void parseData(JSONObject data) {

    }

    @Override
    protected JSONObject packData() {
        return null;
    }
}