You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.3 KiB
Java
76 lines
1.3 KiB
Java
package com.glxp.api.entity.purchase;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* <p>
|
|
*
|
|
* </p>
|
|
*
|
|
* @author 作者
|
|
* @since 2023-02-07
|
|
*/
|
|
@TableName("customer_contact")
|
|
@Data
|
|
public class CustomerContactEntity{
|
|
|
|
@TableField("customerId")
|
|
private String customerId;
|
|
|
|
@TableField("contacts")
|
|
private String contacts;
|
|
|
|
@TableField("mobile")
|
|
private String mobile;
|
|
|
|
@TableField("tel")
|
|
private String tel;
|
|
|
|
@TableField("email")
|
|
private String email;
|
|
|
|
@TableField("comments")
|
|
private String comments;
|
|
|
|
@TableId(value = "id", type = IdType.INPUT)
|
|
private Long id;
|
|
|
|
/**
|
|
* 创建人
|
|
*/
|
|
@TableField("createUser")
|
|
private String createUser;
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
@TableField("createTime")
|
|
private Date createTime;
|
|
|
|
/**
|
|
* 更新人
|
|
*/
|
|
@TableField("updateUser")
|
|
private String updateUser;
|
|
|
|
/**
|
|
* 更新时间
|
|
*/
|
|
@TableField("updateTime")
|
|
private Date updateTime;
|
|
|
|
/**
|
|
* 备注
|
|
*/
|
|
@TableField("remark")
|
|
private String remark;
|
|
|
|
|
|
}
|