package com.matrix.system.hive.bean; 
 | 
  
 | 
import com.matrix.core.anotations.Extend; 
 | 
  
 | 
import java.io.Serializable; 
 | 
  
 | 
/** 
 | 
 * @author helius 
 | 
 */ 
 | 
public class SysSmsShop implements Serializable { 
 | 
    private static final long serialVersionUID = 1302564744711079083L; 
 | 
  
 | 
    /** 
 | 
     * 短信分配 加 
 | 
     */ 
 | 
    public static final int SMS_DISTRIBUTION_ADD = 1; 
 | 
  
 | 
    /** 
 | 
     * 短信分配 减 
 | 
     */ 
 | 
    public static final int SMS_DISTRIBUTION_REDUCE = 2; 
 | 
  
 | 
    private Long id; 
 | 
  
 | 
    private Long shopId; 
 | 
  
 | 
    private Integer remainingCnt; 
 | 
  
 | 
    private String shopName; 
 | 
  
 | 
    @Extend 
 | 
    private Long companyId; 
 | 
  
 | 
    @Extend 
 | 
    private int type; 
 | 
  
 | 
    public Long getCompanyId() { 
 | 
        return companyId; 
 | 
    } 
 | 
  
 | 
    public void setCompanyId(Long companyId) { 
 | 
        this.companyId = companyId; 
 | 
    } 
 | 
  
 | 
    public int getType() { 
 | 
        return type; 
 | 
    } 
 | 
  
 | 
    public void setType(int type) { 
 | 
        this.type = type; 
 | 
    } 
 | 
  
 | 
    public Long getId() { 
 | 
        return id; 
 | 
    } 
 | 
  
 | 
    public void setId(Long id) { 
 | 
        this.id = id; 
 | 
    } 
 | 
  
 | 
    public Long getShopId() { 
 | 
        return shopId; 
 | 
    } 
 | 
  
 | 
    public void setShopId(Long shopId) { 
 | 
        this.shopId = shopId; 
 | 
    } 
 | 
  
 | 
    public Integer getRemainingCnt() { 
 | 
        return remainingCnt; 
 | 
    } 
 | 
  
 | 
    public void setRemainingCnt(Integer remainingCnt) { 
 | 
        this.remainingCnt = remainingCnt; 
 | 
    } 
 | 
  
 | 
    public String getShopName() { 
 | 
        return shopName; 
 | 
    } 
 | 
  
 | 
    public void setShopName(String shopName) { 
 | 
        this.shopName = shopName; 
 | 
    } 
 | 
} 
 |