分组增加可售时段

This commit is contained in:
2024-08-14 09:43:25 +08:00
parent d862eb43be
commit c35df24d2d
4 changed files with 36 additions and 22 deletions

View File

@@ -16,6 +16,8 @@
package cn.ysk.cashier.dto.product;
import lombok.Data;
import javax.persistence.Column;
import java.io.Serializable;
import java.util.List;
@@ -60,4 +62,10 @@ public class TbProductGroupDto implements Serializable {
private Long createdAt;
private Long updatedAt;
private Integer useTime;
private String saleStartTime;
private String saleEndTime;
}