648540858
2023-03-23 a4328e3d4fe2894c0ddf378eea9b3c2a3498d62b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.genersoft.iot.vmp.service.bean;
 
public class ThirdPartyGB {
 
    private String name;
    private String nationalStandardNo;
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getNationalStandardNo() {
        return nationalStandardNo;
    }
 
    public void setNationalStandardNo(String nationalStandardNo) {
        this.nationalStandardNo = nationalStandardNo;
    }
}