| | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.hibernate.validator.constraints.Length; |
| | | |
| | | import javax.validation.constraints.NotBlank; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | |
| | | |
| | | @ApiModelProperty("主营业务") |
| | | @NotBlank(groups = {AddGroup.class},message = "主营业务不能为空") |
| | | @Length(groups = {AddGroup.class}, max=500) |
| | | private String busScope; |
| | | |
| | | @ApiModelProperty("服务范围标记:1-全攀枝花市,2-部分地区") |
| | | @NotBlank(groups = {AddGroup.class},message = "服务范围标记不能为空") |
| | | @NotNull(groups = {AddGroup.class},message = "服务范围标记不能为空") |
| | | private Integer areaFlag; |
| | | |
| | | @ApiModelProperty("商家logo") |