puzhibing
2024-03-06 fba3b84ee4e8b60f1536c50d032e4f199ec172a2
cloud-server-communityWorldCup/src/main/java/com/dsh/communityWorldCup/entity/WorldCup.java
@@ -65,7 +65,7 @@
     * 支付方式(1=免费,2=现金支付,3=玩湃币支付,4=课时支付)
     */
    @TableField("payType")
    private Integer payType;
    private String payType;
    /**
     * 现金
     */
@@ -101,6 +101,26 @@
     */
    @TableField("winIntegral")
    private Integer winIntegral;
    /**
     * 省
     */
    @TableField("province")
    private String province;
    /**
     * 省
     */
    @TableField("provinceCode")
    private String provinceCode;
    /**
     * 市
     */
    @TableField("city")
    private String city;
    /**
     * 市
     */
    @TableField("cityCode")
    private String cityCode;
    /**
     * 参赛地址
     */
@@ -152,4 +172,9 @@
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @TableField("createTime")
    private Date createTime;
    /**
     * 已比赛次数
     */
    @TableField("matchNumber")
    private Integer matchNumber;
}