package com.ruoyi.shop.util.dto;
|
|
/**
|
* @ClassName ContactInfo
|
* @Description TODO
|
* @Author jqs
|
* @Date 2023/6/19 12:55
|
* @Version 1.0
|
*/
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* 超级管理员信息
|
*/
|
@Data
|
public class ContactInfo implements Serializable {
|
private static final long serialVersionUID=1L;
|
/**超级管理员类型*/
|
private String contact_type;
|
/**超级管理员姓名*/
|
private String contact_name;
|
/**超级管理员身份证件号码*/
|
private String contact_id_card_number;
|
/**超级管理员手机*/
|
private String mobile_phone;
|
/**超级管理员邮箱*/
|
private String contact_email;
|
}
|