admin
2022-08-25 c9db68e33f90231b064b8864fc69ccf7d25f5e0b
facade-lijin/src/main/java/com/ks/lijin/pojo/DO/LiJinProviderTaoKeAccount.java
@@ -9,6 +9,17 @@
@Table("tlj_provider_account")
public class LiJinProviderTaoKeAccount implements Serializable {
    //正常
    public final static int ERROR_CODE_NORMAL = 0;
    //资金不足
    public final static int ERROR_CODE_MONEY_NOT_ENOUGH = 10;
    //商品数量不足
    public final static int ERROR_CODE_GOODS_NOT_ENOUGH = 20;
    //其他错误
    public final static int ERROR_CODE_OTHER = 30;
    @Column(name = "ac_id")
    private Long id;
@@ -41,6 +52,20 @@
    @Column(name = "ac_state")
    private Integer state;
    /**
     * 权重
     */
    @Column(name = "ac_weight")
    private Integer weight;
    /**
     * /错误码 0-无错误
     */
    @Column(name = "ac_error_code")
    private Integer errorCode;
    @Column(name = "ac_error_msg")
    private String errorMsg;
    @Column(name = "ac_creator_id")
    private Long creatorId;
@@ -173,4 +198,28 @@
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
    public Integer getErrorCode() {
        return errorCode;
    }
    public void setErrorCode(Integer errorCode) {
        this.errorCode = errorCode;
    }
    public String getErrorMsg() {
        return errorMsg;
    }
    public void setErrorMsg(String errorMsg) {
        this.errorMsg = errorMsg;
    }
    public Integer getWeight() {
        return weight;
    }
    public void setWeight(Integer weight) {
        this.weight = weight;
    }
}