42 lines
937 B
Java
42 lines
937 B
Java
package com.xjs.consts;
|
|
|
|
/**
|
|
* @author xiejs
|
|
* @desc 各个数据平台常量类
|
|
* @create 2021-12-28
|
|
*/
|
|
public class CopyWritingConst {
|
|
|
|
//---------------天行平台参数---------------------------
|
|
|
|
//朋友圈
|
|
public static final Integer PYQ= 1;
|
|
//网易云
|
|
public static final Integer WYY= 2;
|
|
//经典台词
|
|
public static final Integer JDTC= 3;
|
|
//名人名言
|
|
public static final Integer MMMY= 4;
|
|
|
|
|
|
//--------------------roll平台参数-------------------
|
|
|
|
//每日一句
|
|
public static final Integer MRYJ= 5;
|
|
|
|
|
|
//--------------------零七平台参数-----------------------
|
|
|
|
//舔狗日记
|
|
public static final Integer TGRJ= 6;
|
|
//毒鸡汤
|
|
public static final Integer DJT= 7;
|
|
//一言
|
|
public static final Integer YY= 8;
|
|
|
|
//-------------------Uomg平台参数------------------------
|
|
|
|
//土味情话
|
|
public static final Integer TWQH= 9;
|
|
}
|