xuhy
2025-01-09 712f70b2936079a131ecb1e63c6d337171618cad
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package com.stylefeng.guns.modular.system.model;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
import lombok.Data;
 
import java.util.Date;
 
/**
* 打车卡
* @author pzb
* @Date 2022/1/25 15:38
*/
@Data
@TableName("t_taxi_card")
public class TaxiCard {
    //主键
    @TableId(value = "id", type = IdType.AUTO)
    @TableField("id")
    private Integer id;
    //所属企业
    @TableField("companyId")
    private Integer companyId;
    //卡类型(1=普通卡,2=通用卡)
    @TableField("taxiCardType")
    private Integer taxiCardType;
    //打车卡名称
    @TableField("name")
    private String name;
    //打车卡类型1=打折次数卡,2=优惠卡,3=次数卡,4=打折天数卡,5=物流打折卡,6=物流优惠包)
    @TableField("type")
    private Integer type;
    //企业经营范围id,多个用分号分隔
    @TableField("companyCityId")
    private String companyCityId;
    //有效天数
    @TableField("validDate")
    private Integer validDate;
    //原价
    @TableField("originalPrice")
    private Double originalPrice;
    //售价
    @TableField("sellingPrice")
    private Double sellingPrice;
    //规则JSON字符串
    @TableField("content")
    private String content;
    //备注信息
    @TableField("note")
    private String note;
    //状态(1=正常,2=冻结,3=删除)
    @TableField("state")
    private Integer state;
    //添加时间
    @TableField("createTime")
    private Date createTime;
    //添加人员id
    @TableField("createUserId")
    private Integer createUserId;
}