76 lines
1.6 KiB
Java
76 lines
1.6 KiB
Java
package com.cpxt.biz.domain;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import lombok.Data;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
import com.cpxt.common.annotation.Excel;
|
|
import com.cpxt.common.core.domain.BaseEntity;
|
|
|
|
/**
|
|
* 仓库对象 biz_customer_warehouse
|
|
*
|
|
* @author YIN
|
|
* @date 2024-12-16
|
|
*/
|
|
@Data
|
|
public class BizCustomerWarehouse extends BaseEntity
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** ID */
|
|
private Long id;
|
|
|
|
/** 客户ID */
|
|
@Excel(name = "客户ID")
|
|
private Long customerId;
|
|
|
|
/** 客户名称 */
|
|
@Excel(name = "客户名称")
|
|
private String customerName;
|
|
|
|
/** 仓库名称 */
|
|
@Excel(name = "仓库名称")
|
|
private String name;
|
|
|
|
/** 联系人 */
|
|
@Excel(name = "联系人")
|
|
private String linkman;
|
|
|
|
/** 联系电话 */
|
|
@Excel(name = "联系电话")
|
|
private String linkphone;
|
|
|
|
/** 仓库地址 */
|
|
@Excel(name = "仓库地址")
|
|
private String address;
|
|
|
|
/** 坐标经度 */
|
|
@Excel(name = "坐标经度")
|
|
private BigDecimal lng;
|
|
|
|
/** 坐标纬度 */
|
|
@Excel(name = "坐标纬度")
|
|
private BigDecimal lat;
|
|
|
|
/** 状态 */
|
|
@Excel(name = "状态")
|
|
private Integer status;
|
|
|
|
/** 创建时间 */
|
|
@Excel(name = "创建时间")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
private Date createTime;
|
|
|
|
/** 更新时间 */
|
|
@Excel(name = "更新时间")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
private Date updateTime;
|
|
|
|
/** 备注 */
|
|
private String remark;
|
|
}
|