| | |
| | | |
| | | @ApiModelProperty(value = "创建时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @ExcelColumn(name="创建时间",index = 8,width = 16,dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | private Date createDate; |
| | | |
| | | @ApiModelProperty(value = "创建人") |
| | |
| | | @ApiModelProperty(value = "操作记录") |
| | | @TableField(exist = false) |
| | | private List<DiscountLog> optLogList; |
| | | |
| | | @ApiModelProperty(value = "查询开始日期(包含)", example = "2023-10-01 15:12:01") |
| | | @TableField(exist = false) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date startCreateDate; |
| | | |
| | | @ApiModelProperty(value = "查询截止日期(包含)", example = "2023-10-09 15:12:05") |
| | | @TableField(exist = false) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date endCreateDate; |
| | | } |