| | |
| | | public final static int ERROR_CODE_GOODS_NOT_ENOUGH = 20; |
| | | |
| | | //其他错误 |
| | | public final static int ERROR_CODE_OTHER=30; |
| | | public final static int ERROR_CODE_OTHER = 30; |
| | | |
| | | |
| | | @Column(name = "ac_id") |
| | |
| | | @Column(name = "ac_state") |
| | | private Integer state; |
| | | |
| | | //错误码 0-无错误 |
| | | /** |
| | | * 权重 |
| | | */ |
| | | @Column(name = "ac_weight") |
| | | private Integer weight; |
| | | |
| | | /** |
| | | * /错误码 0-无错误 |
| | | */ |
| | | @Column(name = "ac_error_code") |
| | | private Integer errorCode; |
| | | @Column(name = "ac_error_msg") |
| | |
| | | public void setErrorMsg(String errorMsg) { |
| | | this.errorMsg = errorMsg; |
| | | } |
| | | |
| | | public Integer getWeight() { |
| | | return weight; |
| | | } |
| | | |
| | | public void setWeight(Integer weight) { |
| | | this.weight = weight; |
| | | } |
| | | } |