| | |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.matrix.core.pojo.EntityDTO; |
| | | import com.matrix.system.hive.plugin.util.DateUtils; |
| | | import com.matrix.core.tools.DateUtil; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serializable; |
| | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | public static final String INSTORE_TYPE_RETURN = "退货入库"; |
| | | |
| | | /** |
| | | * 序号 |
| | |
| | | /** |
| | | * 入库日期 |
| | | */ |
| | | @DateTimeFormat(pattern= DateUtils.DATE_FORMAT_MM) |
| | | @DateTimeFormat(pattern= DateUtil.DATE_FORMAT_MM) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone="GMT+8") |
| | | private Date instoreDate; |
| | | |
| | |
| | | * 开始时间 |
| | | */ |
| | | |
| | | @DateTimeFormat(pattern=DateUtils.DATE_FORMAT_MM) |
| | | @DateTimeFormat(pattern=DateUtil.DATE_FORMAT_MM) |
| | | private Date startTime; |
| | | |
| | | /** |
| | | * 结束时间 |
| | | */ |
| | | @DateTimeFormat(pattern=DateUtils.DATE_FORMAT_MM) |
| | | @DateTimeFormat(pattern=DateUtil.DATE_FORMAT_MM) |
| | | private Date endTime; |
| | | |
| | | private Long shopId; |