|
@@ -26,15 +26,15 @@ public class TempDirectorTrainingCamp implements Serializable {
|
|
|
|
|
|
@TableField("apply_start_date_")
|
|
|
@ApiModelProperty(value = "报名开始日期")
|
|
|
- private String applyStartDate;
|
|
|
+ private Date applyStartDate;
|
|
|
|
|
|
@TableField("apply_end_date_")
|
|
|
@ApiModelProperty(value = "报名结束日期")
|
|
|
- private String applyEndDate;
|
|
|
+ private Date applyEndDate;
|
|
|
|
|
|
@TableField("bird_price_end_date_")
|
|
|
@ApiModelProperty(value = "早鸟价截止日期")
|
|
|
- private String birdPriceEndDate;
|
|
|
+ private Date birdPriceEndDate;
|
|
|
|
|
|
@TableField("bird_price_")
|
|
|
@ApiModelProperty(value = "早鸟价")
|
|
@@ -49,7 +49,7 @@ public class TempDirectorTrainingCamp implements Serializable {
|
|
|
private BigDecimal originalPrice;
|
|
|
|
|
|
@TableField("status_")
|
|
|
- @ApiModelProperty(value = "未开始 NOT_START,报名中 APPLY,已结束 END")
|
|
|
+ @ApiModelProperty(value = "未开始 NOT_START,报名中 APPLY,已结束 END ,不用,直接使用时间判断")
|
|
|
private String status;
|
|
|
|
|
|
@TableField("update_by_")
|