CZT
2024-01-02 530af60d6c6a82c11ab2c4aeb6a691c0c0c64eaf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.fzzy.async.fzzy40.entity;
 
import lombok.AllArgsConstructor;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
@AllArgsConstructor
public class Fz40CheckItemKey implements Serializable {
        private String checkId;
        private String companyId;
        private String standardId;
 
    public Fz40CheckItemKey(){
            super();
        }
    }