package com.panzhihua.service_community.model.dos;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @ClassName: ConvenientElevatingPoint
|
* @Author: yh
|
* @Date: 2022/11/8 9:27
|
* @Description: 自提点
|
*/
|
@Data
|
@TableName(value = "com_convenient_elevating_point")
|
public class ConvenientElevatingPointDO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键id
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
/**
|
* 自提点名称
|
*/
|
private String name;
|
/**
|
* 社区id
|
*/
|
private String communityId;
|
/**
|
* 社区名称
|
*/
|
private String communityName;
|
/**
|
* 提货点地址
|
*/
|
private String address;
|
|
/**
|
* 提货点地址详细地址
|
*/
|
private String detailAddress;
|
/**
|
* 联系人
|
*/
|
private String contacts;
|
/**
|
* 纬度
|
*/
|
private String lat;
|
/**
|
* 经度
|
*/
|
private String lon;
|
/**
|
* 联系电话
|
*/
|
private String phone;
|
/**
|
* 微信账号
|
*/
|
private String wechatAccount;
|
/**
|
* 状态,1:显示,2:隐藏
|
*/
|
private Integer businessStatus;
|
/**
|
* 累计商品数量
|
*/
|
private Long cumulativeGoodsNum;
|
/**
|
* 待提货数量
|
*/
|
private Long prepareGoodsNum;
|
/**
|
* 已提货数量
|
*/
|
private Long alreadyGoodsNum;
|
/**
|
* 是否删除
|
*/
|
private Boolean isDel;
|
/**
|
* 创建时间
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
private Date createdAt;
|
|
/**
|
* 创建人
|
*/
|
private Long createdBy;
|
/**
|
* 更新时间
|
*/
|
@TableField(fill = FieldFill.UPDATE)
|
private Date updatedAt;
|
/**
|
* 更新人
|
*/
|
private Long updatedBy;
|
|
}
|