From c9db68e33f90231b064b8864fc69ccf7d25f5e0b Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期四, 25 八月 2022 17:55:40 +0800 Subject: [PATCH] 淘宝商品ID字符串化 --- facade-lijin/src/main/java/com/ks/lijin/pojo/DO/LiJinProviderTaoKeAccount.java | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 49 insertions(+), 0 deletions(-) diff --git a/facade-lijin/src/main/java/com/ks/lijin/pojo/DO/LiJinProviderTaoKeAccount.java b/facade-lijin/src/main/java/com/ks/lijin/pojo/DO/LiJinProviderTaoKeAccount.java index 294c300..d876fed 100644 --- a/facade-lijin/src/main/java/com/ks/lijin/pojo/DO/LiJinProviderTaoKeAccount.java +++ b/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 { + //姝e父 + 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; + } } \ No newline at end of file -- Gitblit v1.8.0