Guo_shaoshan
2023-04-24 f21e1ae4b858b6a329b717eaf420d4a1e79d9509
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.application.zhangshi_app_android.bean;
 
public class GrowthExperienceAbroadConditionBean {
    private String userId;
    private String destination;
    private String cause;
    private String startDate;
 
 
    public String getUserId() { return userId; }
    public void setUserId(String value) { this.userId = value; }
    public String getDestination() { return destination; }
    public void setDestination(String value) { this.destination = value; }
    public String getCause() { return cause; }
    public void setCause(String value) { this.cause = value; }
 
    public String getStartDate() { return startDate; }
    public void setStartDate(String value) { this.startDate = value; }
}