admin
2021-05-29 970e58a0ceb0bfcd52affad3f08c53d30c29ab8d
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,12 @@
    @Column(name = "ac_state")
    private Integer state;
    //错误码 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 +190,20 @@
    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;
    }
}