Substation.java
747 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
package com.diligrp.rider.entity;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
/**
* 分站管理员表
* 每个城市对应一个分站管理员,负责该城市骑手/订单日常运营
*/
@Data
@TableName("substation")
public class Substation {
@TableId(type = IdType.AUTO)
private Long id;
/** 管理的城市ID */
private Long cityId;
/** 登录账号 */
private String userLogin;
/** 昵称 */
private String userNickname;
/** 密码(MD5) */
private String userPass;
/** 手机号 */
private String mobile;
/** 头像 */
private String avatar;
/** 状态:0=禁用 1=正常 */
private Integer userStatus;
private Long createTime;
}