Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
wwwanlingxiao
mall
Commits
bb53652b
Commit
bb53652b
authored
May 27, 2020
by
macro
Browse files
Update PmsBrandParam.java
parent
b38d88b6
Changes
1
Hide whitespace changes
Inline
Side-by-side
mall-admin/src/main/java/com/macro/mall/dto/PmsBrandParam.java
View file @
bb53652b
...
...
@@ -2,6 +2,8 @@ package com.macro.mall.dto;
import
com.macro.mall.validator.FlagValidator
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
javax.validation.constraints.Min
;
import
javax.validation.constraints.NotEmpty
;
...
...
@@ -10,6 +12,8 @@ import javax.validation.constraints.NotEmpty;
* 品牌传递参数
* Created by macro on 2018/4/26.
*/
@Data
@EqualsAndHashCode
(
callSuper
=
false
)
public
class
PmsBrandParam
{
@ApiModelProperty
(
value
=
"品牌名称"
,
required
=
true
)
@NotEmpty
(
message
=
"名称不能为空"
)
...
...
@@ -32,68 +36,4 @@ public class PmsBrandParam {
private
String
bigPic
;
@ApiModelProperty
(
value
=
"品牌故事"
)
private
String
brandStory
;
public
String
getName
()
{
return
name
;
}
public
void
setName
(
String
name
)
{
this
.
name
=
name
;
}
public
String
getFirstLetter
()
{
return
firstLetter
;
}
public
void
setFirstLetter
(
String
firstLetter
)
{
this
.
firstLetter
=
firstLetter
;
}
public
Integer
getSort
()
{
return
sort
;
}
public
void
setSort
(
Integer
sort
)
{
this
.
sort
=
sort
;
}
public
Integer
getFactoryStatus
()
{
return
factoryStatus
;
}
public
void
setFactoryStatus
(
Integer
factoryStatus
)
{
this
.
factoryStatus
=
factoryStatus
;
}
public
Integer
getShowStatus
()
{
return
showStatus
;
}
public
void
setShowStatus
(
Integer
showStatus
)
{
this
.
showStatus
=
showStatus
;
}
public
String
getLogo
()
{
return
logo
;
}
public
void
setLogo
(
String
logo
)
{
this
.
logo
=
logo
;
}
public
String
getBigPic
()
{
return
bigPic
;
}
public
void
setBigPic
(
String
bigPic
)
{
this
.
bigPic
=
bigPic
;
}
public
String
getBrandStory
()
{
return
brandStory
;
}
public
void
setBrandStory
(
String
brandStory
)
{
this
.
brandStory
=
brandStory
;
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment