Subversion Repositories SmartDukaan

Rev

Rev 36762 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 36762 Rev 37248
Line 66... Line 66...
66
    private LocalTime sessionEndTime;
66
    private LocalTime sessionEndTime;
67
 
67
 
68
    @Column(name = "task_description", columnDefinition = "TEXT")
68
    @Column(name = "task_description", columnDefinition = "TEXT")
69
    private String taskDescription;
69
    private String taskDescription;
70
 
70
 
-
 
71
    /**
-
 
72
     * Per-agenda remarks captured at CHECKOUT, as a JSON array:
-
 
73
     * [{"instanceId":12,"agendaType":"LOW_SALES","label":"Low sales","discussion":"..."}]
-
 
74
     * task_description keeps the flat human-readable string the app composes;
-
 
75
     * this column keeps the structured form so each remark stays attributable
-
 
76
     * to its agenda instance without joining user.agenda_visit_log.
-
 
77
     */
-
 
78
    @Column(name = "remark_response", columnDefinition = "TEXT")
-
 
79
    private String remarkResponse;
-
 
80
 
71
    @Column(name = "address", nullable = false, length = 500)
81
    @Column(name = "address", nullable = false, length = 500)
72
    private String address;
82
    private String address;
73
 
83
 
74
    @Column(name = "attachment", length = 191)
84
    @Column(name = "attachment", length = 191)
75
    private String attachment;
85
    private String attachment;
Line 243... Line 253...
243
 
253
 
244
    public void setTaskDescription(String taskDescription) {
254
    public void setTaskDescription(String taskDescription) {
245
        this.taskDescription = taskDescription;
255
        this.taskDescription = taskDescription;
246
    }
256
    }
247
 
257
 
-
 
258
    public String getRemarkResponse() {
-
 
259
        return remarkResponse;
-
 
260
    }
-
 
261
 
-
 
262
    public void setRemarkResponse(String remarkResponse) {
-
 
263
        this.remarkResponse = remarkResponse;
-
 
264
    }
-
 
265
 
248
    public String getAddress() {
266
    public String getAddress() {
249
        return address;
267
        return address;
250
    }
268
    }
251
 
269
 
252
    public void setAddress(String address) {
270
    public void setAddress(String address) {