mirror of
https://gitee.com/elegant_wings/dbd-meeting.git
synced 2025-06-22 03:39:37 +08:00
38 lines
647 B
Java
38 lines
647 B
Java
![]() |
package com.ics.admin.domain;
|
||
|
|
||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||
|
import com.ics.common.core.domain.BaseEntity;
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* 联系人对象 ics_customer_contacts
|
||
|
*
|
||
|
* @author zzm
|
||
|
* @date 2021-03-29
|
||
|
*/
|
||
|
@Data
|
||
|
@TableName("ics_customer_contacts")
|
||
|
public class CustomerContacts extends BaseEntity<CustomerContacts> {
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/**
|
||
|
* 联系人
|
||
|
*/
|
||
|
private String name;
|
||
|
|
||
|
/**
|
||
|
* 联系电话
|
||
|
*/
|
||
|
private String phone;
|
||
|
|
||
|
/**
|
||
|
* 备注
|
||
|
*/
|
||
|
private String remark;
|
||
|
|
||
|
/**
|
||
|
* 客户id
|
||
|
*/
|
||
|
private Long customerId;
|
||
|
|
||
|
}
|