@ckstack/ck-lib-models
Version:
ckstack default database table sequelize models
31 lines (30 loc) • 802 B
TypeScript
import { Model } from 'sequelize-typescript';
import { CkValue } from '@dkpkg/dk-lib';
export declare class FcmHistoryTmp extends Model {
rid: string;
yyyymm: number;
retry_index: number;
user_id: string;
fcm_msg_id: string;
fcm_send_flag: CkValue.PUSH_SEND_RESULT;
fcm_err_code: string;
fcm_err_msg: string;
arrival_flag: CkValue.PUSH_ALLIVAL;
read_flag: CkValue.PUSH_READ;
limit_retry_count: number;
arrival_date: Date;
read_date: Date;
fcm_msg: {
[key: string]: any;
};
broadcast_id: string;
extra: {
[key: string]: any;
};
push_vendor: CkValue.PUSH_VENDOR_TYPE;
client_id: string;
user_terminal_id: number;
c_date: Date;
u_date: Date;
static autoFitString(data: FcmHistoryTmp): void;
}