chenrui
2025-03-11 379222715511cc4d6efd4abbbb3463f5485f590d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.common.core.domain.entity;
 
import lombok.Data;
 
@Data
public class Company {
 
    private String companyId;
 
    private String companyName;
 
    private String parentCompanyId;
 
    private String description;
 
    private String status;
}