feat:装修团队配置

This commit is contained in:
苏竹红
2025-10-30 18:34:54 +08:00
parent 3f23c0ae95
commit ec73dad33e
9 changed files with 174 additions and 0 deletions

View File

@@ -2,6 +2,8 @@ package com.cool.store.dto.decoration;
import lombok.Data;
import java.util.List;
/**
* @Author suzhuhong
* @Date 2025/10/29 18:41
@@ -9,4 +11,15 @@ import lombok.Data;
*/
@Data
public class DecorationTeamDTO {
private Long id;
private String teamName;
private String teamCode;
private Integer useSystem;
private List<TeamAreaMappingDTO> cityList;
}