MProjectModel.java
618 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.model;
import lombok.Data;
import java.io.Serializable;
/**
* Created by yoho on 2016/9/7.
*/
@Data
public class MProjectModel implements Serializable {
private int id;
private String type;
private String name;
private String sourceUrl;
private String sourceUser;
private String sourcePwd;
private String sourceBranch;
private String sourceId;
private int sourceOrder;
private String sourceGroup;
private String destHost;
private String destPath;
private String destUser;
private String destPwd;
private String destLocation;
}