/var/www/greso.tech/server/nsm/responseModels/lead_distribution
Edit: /var/www/greso.tech/server/nsm/responseModels/lead_distribution/leadDistributionList.model.js (368B)
module.exports = class LeadDistributionListModel {
constructor({ rows, count, page, limit, time }) {
this.list = rows
? rows.map((ld) => {
let { companyId, salesRepId } = ld
return { companyId, salesRepId }
})
: []
this.count = count || 0
this.page = page ? page : 1
this.limit = limit ? limit : 10
this.time = time ? time : 0
}
}