| | |
| | | *
|
| | | */
|
| | | @Table("yeshi_ec_taobao_union_config")
|
| | | public class TaoBaoUnionConfig implements Serializable{
|
| | | public class TaoBaoUnionConfig implements Serializable {
|
| | | /**
|
| | | *
|
| | | */
|
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | |
|
| | | public final static int TYPE_ANDROID = 1;
|
| | | public final static int TYPE_IOS = 2;
|
| | | public final static int TYPE_SHARE = 0;
|
| | | public final static int TYPE_TLJ_BUY = 3;// 自购立减淘礼金
|
| | |
|
| | | public final static int STATE_VALID = 0;// 正常
|
| | | public final static int STATE_NOVALID = 1;// 不正常
|
| | |
|
| | | @Column(name = "tc_id")
|
| | | private Long id;
|
| | | @Column(name = "tc_account")
|
| | |
| | | private String appName;
|
| | | @Column(name = "tc_type")
|
| | | private Integer type;
|
| | | @Column(name = "tc_state")
|
| | | private Integer state;
|
| | | @Column(name = "tc_state_desc")
|
| | | private String stateDesc;
|
| | |
|
| | | public Integer getState() {
|
| | | return state;
|
| | | }
|
| | |
|
| | | public void setState(Integer state) {
|
| | | this.state = state;
|
| | | }
|
| | |
|
| | | public String getStateDesc() {
|
| | | return stateDesc;
|
| | | }
|
| | |
|
| | | public void setStateDesc(String stateDesc) {
|
| | | this.stateDesc = stateDesc;
|
| | | }
|
| | |
|
| | | public TaoBaoUnionConfig() {
|
| | |
|