package com.pz.system.domain;

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

import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;

/**
 * 商城商户申请对象 store_apply
 *
 * @author ruoyi
 * @date 2023-09-10
 */
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("store_apply")
public class StoreApply extends BaseEntity {

    private static final long serialVersionUID=1L;

    /**
     *
     */
    @TableId(value = "id")
    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 Integer status;
}