MerchantEnter.java
774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.diligrp.rider.entity;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import java.math.BigDecimal;
/**
* 商家入驻申请表
* merchant_enter表
*/
@Data
@TableName("merchant_enter")
public class MerchantEnter {
@TableId(type = IdType.AUTO)
private Long id;
/** 联系人姓名 */
private String name;
/** 手机号 */
private String mobile;
/** 店铺名称 */
private String storeName;
/** 申请类型:1=商家入驻 2=骑手入驻 3=商务合作 */
private Integer type;
/** 所在城市ID */
private Long cityId;
/** 备注 */
private String remark;
/** 状态:0=未处理 1=已通过 -1=已拒绝 */
private Integer status;
private Long addTime;
}