| | |
| | | package com.matrix.system.hive.bean; |
| | | |
| | | import com.matrix.core.anotations.Extend; |
| | | import com.matrix.system.hive.plugin.util.DateUtils; |
| | | import com.matrix.core.tools.DateUtil; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serializable; |
| | |
| | | /** |
| | | * 下架时间 |
| | | */ |
| | | @DateTimeFormat(pattern = DateUtils.DATE_FORMAT_DD) |
| | | @DateTimeFormat(pattern = DateUtil.DATE_FORMAT_DD) |
| | | private Date saleOffTime; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 扩展字段 |
| | | */ |
| | | @DateTimeFormat(pattern = DateUtils.DATE_FORMAT_DD) |
| | | @DateTimeFormat(pattern = DateUtil.DATE_FORMAT_DD) |
| | | private Date startTime; |
| | | |
| | | @DateTimeFormat(pattern = DateUtils.DATE_FORMAT_DD) |
| | | @DateTimeFormat(pattern = DateUtil.DATE_FORMAT_DD) |
| | | private Date endTime; |
| | | |
| | | |