|
|
@ -5,10 +5,13 @@ import lombok.Data; |
|
|
|
import lombok.EqualsAndHashCode; |
|
|
|
import lombok.ToString; |
|
|
|
|
|
|
|
import java.time.LocalDateTime; |
|
|
|
|
|
|
|
@Schema(description = "管理后台 - 库存事务 Response VO") |
|
|
|
@Data |
|
|
|
@EqualsAndHashCode(callSuper = true) |
|
|
|
@ToString(callSuper = true) |
|
|
|
public class TransactionRespVO extends TransactionBaseVO { |
|
|
|
|
|
|
|
@Schema(description = "创建时间") |
|
|
|
private LocalDateTime createTime; |
|
|
|
} |
|
|
|