xuhy
2023-02-21 ee00ca28898f7bc99b98fb8f8c1898058bb291de
management/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/TCoupon.java
@@ -39,6 +39,14 @@
    @TableField("user_id")
    private Integer userId;
    @ApiModelProperty(value = "代理商id")
    @TableField("agentId")
    private Integer agentId;
    @ApiModelProperty(value = "分公司id")
    @TableField("branchOfficeId")
    private Integer branchOfficeId;
    @ApiModelProperty(value = "优惠券名称")
    @TableField("coupon_name")
    private String couponName;
@@ -75,6 +83,34 @@
    @TableField("coupon_send_quantity")
    private Integer couponSendQuantity;
    @ApiModelProperty(value = "是否冻结 1正常 2冻结")
    @TableField("coupon_state")
    private Integer couponState;
    public Integer getAgentId() {
        return agentId;
    }
    public void setAgentId(Integer agentId) {
        this.agentId = agentId;
    }
    public Integer getBranchOfficeId() {
        return branchOfficeId;
    }
    public void setBranchOfficeId(Integer branchOfficeId) {
        this.branchOfficeId = branchOfficeId;
    }
    public Integer getCouponState() {
        return couponState;
    }
    public void setCouponState(Integer couponState) {
        this.couponState = couponState;
    }
    public Integer getCouponValidity() {
        return couponValidity;
    }