You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
539 B
Java
28 lines
539 B
Java
package com.kiisoo.ic.promotion.entity;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class PmnPromotionSrcVO {
|
|
|
|
private String name;
|
|
private String staffCode;
|
|
private String mobile;
|
|
private String storeName;
|
|
private int type;
|
|
private String code;
|
|
|
|
/*
|
|
*分页总条数
|
|
*/
|
|
@ApiModelProperty(value = "分页总条数", hidden = true)
|
|
private long totalSize;
|
|
|
|
/**序号*/
|
|
@ApiModelProperty(value = "序号", hidden = true)
|
|
private int number;
|
|
|
|
|
|
}
|