消息通知

This commit is contained in:
lzh
2023-03-16 23:49:04 +08:00
parent cfffca82fa
commit 9afc113da3
9 changed files with 299 additions and 25 deletions

View File

@@ -0,0 +1,72 @@
/*********************************************************
*********************************************************
******************** *******************
************* ************
******* _oo0oo_ *******
*** o8888888o ***
* 88" . "88 *
* (| -_- |) *
* 0\ = /0 *
* ___/`---'\___ *
* .' \\| |// '. *
* / \\||| : |||// \ *
* / _||||| -:- |||||- \ *
* | | \\\ - /// | | *
* | \_| ''\---/'' |_/ | *
* \ .-\__ '-' ___/-. / *
* ___'. .' /--.--\ `. .'___ *
* ."" '< `.___\_<|>_/___.' >' "". *
* | | : `- \`.;`\ _ /`;.`/ - ` : | | *
* \ \ `_. \_ __\ /__ _/ .-` / / *
* =====`-.____`.___ \_____/___.-`___.-'===== *
* `=---=' *
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ *
*********__佛祖保佑__永无BUG__验收通过__钞票多多__*********
*********************************************************/
package com.zscat.mallplus.unipush.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.io.Serializable;
/**
* Project: mallplus <br/>
* File: PushCids.java <br/>
* Class: com.zscat.mallplus.unipush.entity.PushCids <br/>
* Description: <描述类的功能>. <br/>
* Copyright: Copyright (c) 2011 <br/>
* Company: https://gitee.com/liuzp315 <br/>
* Makedate: 2023/3/16 21:36 <br/>
*
* @author liupopo
* @version 1.0
* @since 1.0
*/
@Data
@TableName("push_cids")
public class PushCids implements Serializable {
private static final long serialVersionUID = 1L;
public PushCids() {
}
public PushCids(String getuiCid) {
this.getuiCid = getuiCid;
}
public PushCids(String getuiCid, String userPhone) {
this.getuiCid = getuiCid;
this.userPhone = userPhone;
}
@TableId(value = "id", type = IdType.AUTO)
private Long id;
private String getuiCid;// 个推的ClientID
private String userPhone;// 用户手机号
private Long userId;// 用户ID
}

View File

@@ -0,0 +1,45 @@
/*********************************************************
*********************************************************
******************** *******************
************* ************
******* _oo0oo_ *******
*** o8888888o ***
* 88" . "88 *
* (| -_- |) *
* 0\ = /0 *
* ___/`---'\___ *
* .' \\| |// '. *
* / \\||| : |||// \ *
* / _||||| -:- |||||- \ *
* | | \\\ - /// | | *
* | \_| ''\---/'' |_/ | *
* \ .-\__ '-' ___/-. / *
* ___'. .' /--.--\ `. .'___ *
* ."" '< `.___\_<|>_/___.' >' "". *
* | | : `- \`.;`\ _ /`;.`/ - ` : | | *
* \ \ `_. \_ __\ /__ _/ .-` / / *
* =====`-.____`.___ \_____/___.-`___.-'===== *
* `=---=' *
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ *
*********__佛祖保佑__永无BUG__验收通过__钞票多多__*********
*********************************************************/
package com.zscat.mallplus.unipush.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.zscat.mallplus.unipush.entity.PushCids;
/**
* Project: mallplus <br/>
* File: PushCidsMapper.java <br/>
* Class: com.zscat.mallplus.unipush.entity.PushCidsMapper <br/>
* Description: <描述类的功能>. <br/>
* Copyright: Copyright (c) 2011 <br/>
* Company: https://gitee.com/liuzp315 <br/>
* Makedate: 2023/3/16 21:46 <br/>
*
* @author liupopo
* @version 1.0
* @since 1.0
*/
public interface PushCidsMapper extends BaseMapper<PushCids> {
}