liusheng
2023-08-09 2c16ba7f4cdfedf4ec05395e20caf9c87f2b5101
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
63
64
65
66
package com.ruoyi.project.domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 差旅城市和补贴标准对象 base_travelcity
 * 
 * @author ruoyi
 * @date 2023-04-23
 */
@Data
@ApiModel("差旅城市和补贴标准")
public class BaseTravelcity extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** $column.columnComment */
    @ApiModelProperty("$column.columnComment")
    //数据库自增改成@TableId(type = IdType.AUTO)
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /** 城市编号 */
    @ApiModelProperty("城市编号")
    @Excel(name = "城市编号")
    private String citycode;
 
    /** 城市名称 */
    @ApiModelProperty("城市名称")
    @Excel(name = "城市名称")
    private String cityname;
 
    /** 省份 */
    @ApiModelProperty("省份")
    @Excel(name = "省份")
    private String province;
 
    /** 交通补贴金额 */
    @ApiModelProperty("交通补贴金额")
    @Excel(name = "交通补贴金额")
    private BigDecimal transport;
 
    /** 住宿补贴金额 */
    @ApiModelProperty("住宿补贴金额")
    @Excel(name = "住宿补贴金额")
    private BigDecimal hotel;
 
    /** 公砸费补贴金额 */
    @ApiModelProperty("公砸费补贴金额")
    @Excel(name = "公砸费补贴金额")
    private BigDecimal others;
 
    /** $column.columnComment */
    @ApiModelProperty("$column.columnComment")
    @Excel(name = "公砸费补贴金额")
    private BigDecimal food;
 
}