mirror of
https://gitee.com/elegant_wings/dbd-meeting.git
synced 2025-06-22 05:59:37 +08:00
33 lines
602 B
Java
33 lines
602 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_attachments
|
||
|
*
|
||
|
* @author zzm
|
||
|
* @date 2021-03-29
|
||
|
*/
|
||
|
@Data
|
||
|
@TableName("ics_customer_attachments")
|
||
|
public class CustomerAttachments extends BaseEntity<CustomerAttachments> {
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/**
|
||
|
* 文件名
|
||
|
*/
|
||
|
private String name;
|
||
|
|
||
|
/**
|
||
|
* 文件地址
|
||
|
*/
|
||
|
private String url;
|
||
|
|
||
|
/**
|
||
|
* 客户id
|
||
|
*/
|
||
|
private Long customerId;
|
||
|
|
||
|
}
|