ludc
2023-08-29 3dd21c23e8d9eea848e3f3f2dd73e4d563bc92a7
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
package com.vci.ubcs.code.applyjtcodeservice.vo;
 
public class DockingMainDataVO {
 
    private String applyId;
    private String customCoding;
    private String formState;
    public String getApplyId() {
        return applyId;
    }
    public void setApplyId(String applyId) {
        this.applyId = applyId;
    }
    public String getCustomCoding() {
        return customCoding;
    }
    public void setCustomCoding(String customCoding) {
        this.customCoding = customCoding;
    }
    public String getFormState() {
        return formState;
    }
    public void setFormState(String formState) {
        this.formState = formState;
    }
 
 
}