package com.pz.system.domain;

import com.baomidou.mybatisplus.annotation.*;
import com.pz.common.core.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;


/**
 * 商户对象 store_info
 *
 * @author ruoyi
 * @date 2023-09-08
 */
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("store_info")
public class StoreInfo extends BaseEntity {

    private static final long serialVersionUID=1L;

    /**
     *
     */
    private Integer id;
    /**
     *
     */
    private Integer uid;
    /**
     *
     */
    private String name;
    /**
     * 城市
     */
    private Integer cityId;
    /**
     *
     */
    private String tel;
    /**
     *
     */
    private String email;
    /**
     *
     */
    private String address;
    /**
     *
     */
    private String businessLicense;
    /**
     *
     */
    private String foodBusinessLicense;
    /**
     *
     */
    private String drugBusinessLicense;
    /**
     *
     */
    private String medicalBusinessLicense;
    /**
     *
     */
    private String twoMedicalBusinessLicense;
    /**
     *
     */
    private Integer isCashDeposit;
    /**
     *
     */
    private Long cashDeposit;
    /**
     *
     */
    private Long totalRevenue;
    /**
     *
     */
    private Long balance;
    /**
     *
     */
    private Long freezeBalance;
    /**
     * 删除标志(0代表存在 2代表删除)
     */
    @TableLogic
    private String delFlag;

}