(domainId: string, psid: ObjectId, owner: number, content: string)
| 54 | } |
| 55 | |
| 56 | static reply(domainId: string, psid: ObjectId, owner: number, content: string) { |
| 57 | return document.push(domainId, document.TYPE_PROBLEM_SOLUTION, psid, 'reply', content, owner); |
| 58 | } |
| 59 | |
| 60 | static getReply(domainId: string, psid: ObjectId, psrid: ObjectId) { |
| 61 | return document.getSub(domainId, document.TYPE_PROBLEM_SOLUTION, psid, 'reply', psrid); |