imboard
Version:
Most convenient platform for webpage development.
37 lines (32 loc) • 919 B
JavaScript
var CommentVo = function(param)
{
this.boardId = undefined;
this.articleSeq = undefined;
this.seq = undefined;
this.content = undefined;
this.registerDate = undefined;
this.good = undefined;
this.bad = undefined;
this.writerId = undefined;
this.writerName = undefined;
this.writerDisplayId = undefined;
this.groupId = undefined;
this.parentSeq = undefined;
this.parentWriterId = undefined;
this.parentWriterName = undefined;
this.parentWriterDisplayId = undefined;
this.status = undefined;
this.writerProfileImgUrl = undefined;
//searchData
this.pageIndex = undefined;
this.startIndex = undefined;
this.endIndex = undefined;
this.registerDateType = undefined;
this.withContent = undefined;
this.orderByGroupId = undefined;
this.orderBySeq = undefined;
this.orderByRegisterDate = undefined;
this.password = undefined;
ParameterBinder.bind(this, param);
};
module.exports = CommentVo;