You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
448 B

package com.example.web.dto;
import com.example.web.entity.Contacts;
import com.example.web.entity.Enterprise;
import com.example.web.entity.Managers;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* @Description: 企业信息DTO,包含企业、联系人和负责人信息
*/
@Data
@NoArgsConstructor
public class EnterpriseInfoDTO {
private Enterprise enterprise;
private Contacts contacts;
private Managers managers;
}