| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- package com.java110.dto.couponRuleCpps;
- import com.java110.dto.PageDto;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * @ClassName FloorDto
- * @Description 规则优惠券数据层封装
- * @Author wuxw
- * @Date 2019/4/24 8:52
- * @Version 1.0
- * add by wuxw 2019/4/24
- **/
- public class CouponRuleCppsDto extends PageDto implements Serializable {
- private String quantity;
- private String crcId;
- private String cppId;
- private String couponName;
- private String ruleId;
- private String ruleName;
- private String toTypeName;
- private String communityId;
- private String[] ruleIds;
- private Date createTime;
- private String statusCd = "0";
- public String getQuantity() {
- return quantity;
- }
- public void setQuantity(String quantity) {
- this.quantity = quantity;
- }
- public String getCrcId() {
- return crcId;
- }
- public void setCrcId(String crcId) {
- this.crcId = crcId;
- }
- public String getCppId() {
- return cppId;
- }
- public void setCppId(String cppId) {
- this.cppId = cppId;
- }
- public String getRuleId() {
- return ruleId;
- }
- public void setRuleId(String ruleId) {
- this.ruleId = ruleId;
- }
- public String getCommunityId() {
- return communityId;
- }
- public void setCommunityId(String communityId) {
- this.communityId = communityId;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public String getStatusCd() {
- return statusCd;
- }
- public void setStatusCd(String statusCd) {
- this.statusCd = statusCd;
- }
- public String getCouponName() {
- return couponName;
- }
- public void setCouponName(String couponName) {
- this.couponName = couponName;
- }
- public String[] getRuleIds() {
- return ruleIds;
- }
- public void setRuleIds(String[] ruleIds) {
- this.ruleIds = ruleIds;
- }
- public String getRuleName() {
- return ruleName;
- }
- public void setRuleName(String ruleName) {
- this.ruleName = ruleName;
- }
- public String getToTypeName() {
- return toTypeName;
- }
- public void setToTypeName(String toTypeName) {
- this.toTypeName = toTypeName;
- }
- }
|