CZT
2023-09-23 a1f0690d10288f9aa82b7fe96a9c4e33d9ad7661
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.fzzy.async.fzzy35.entity;
 
import lombok.AllArgsConstructor;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
@AllArgsConstructor
public class Fz35CheckItemKey implements Serializable {
        private String checkId;
        private String companyId;
        private String standardId;
 
    public Fz35CheckItemKey(){
            super();
        }
    }