qrcode-framework
Version:
18 lines (17 loc) • 536 B
TypeScript
import { Association, BelongsToGetAssociationMixin } from 'sequelize';
import { BaseModel } from '../../core/BaseModel';
import { Material } from './Material';
export declare class MaterialPayment extends BaseModel {
static associations: {
material: Association<MaterialPayment, Material>;
};
id: number;
mid: number;
payType: number;
payment: number;
platform: number | null;
createdAt: Date;
updatedAt: Date;
deleted: boolean;
getMaterial: BelongsToGetAssociationMixin<Material>;
}