| | |
| | | |
| | | @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; |
| | | |
| | |
| | | |
| | | @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; |
| | |
| | | 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; |
| | | } |
| | | } |