qiubh pirms 2 mēnešiem
vecāks
revīzija
b8ba60d7fa

+ 788
- 0
gly-base-core/src/main/java/cn/com/taiji/core/entity/doris/EtcApplyOrder.java Parādīt failu

@@ -0,0 +1,788 @@
package cn.com.taiji.core.entity.doris;

import cn.com.taiji.common.entity.StringUUIDEntity;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
import java.time.LocalDateTime;

/**
* @author : http://www.chiner.pro
* @date : 2023-12-4
* @desc :
*/
@Entity
@Table(name ="etc_apply_order")
public class EtcApplyOrder extends StringUUIDEntity{

/** 订单号 */
private String orderno;

/** 渠道编码 */
private String orgcode;

/** 订单状态(-3退货,-2撤销,-1驳回、0待审核、1审核通过) */
private Integer orderstatus;

/** 人工审核状态:无需审核_0,待审核1,已审核_2 */
private Integer manualhandstatus;

/** 线上标识:1线上,2线下,3部中心 */
private Integer isonline;

/** 流程状态:0未开始,1进行中,2已完成 */
private Integer progressstatus;

/** 领取状态:1未领取,2已领取 */
private Integer receivestatus;

/** 领取人 */
private String receiver;

/** 领取时间 */
private LocalDateTime receivetime;

/** 审核状态:0未审核,1已审核 */
private Integer reviewstatus;

/** 审批人 */
private String reviewer;

/** 审核意见 */
private String reviewopinion;

/** 审核时间 */
private LocalDateTime reviewtime;

/** 发货状态:0未发货,1已发货,2已退货 */
private Integer deliverystatus;

/** ETC卡号 */
private String cardid;

/** 签号 */
private String obuid;

/** 推广码 */
private String promoternum;

/** 营销码 */
private String marketcode;

/** 推广渠道编码 */
private String promoterchannelnum;

/** 库存推广码 */
private String storepromoternum;

/** 库存推广渠道编码 */
private String storepromoterchannelnum;

/** 签约银行渠道编码 */
private String signchanel;

/** 银行卡号 */
private String accountnum;

/** 开票类型 */
private String invoicetype;

/** 开票地州市 */
private String invoicecode;

/** 申请卡种(1-九州,2-昆仑) */
private Integer cardkind;

/** 办理模式 */
private Integer productmodel;

/** 是否有效(1有效,-1无效) */
private Integer deleteflag;

/** 操作人 */
private String operator;

/** 操作备注 */
private String ordermessage;

/** 渠道方申请时间 */
private LocalDateTime applytime;

/** 中油开卡的用户类型1-个人 2-单位 */
private Integer cnpcusertype;

/** 银行签约协议号 */
private String contractid;

/** 1-不是预约用户 2-预约用户 */
private Integer signdetection;

/** 来源类型,接口申请_1,导入数据_2,同步老系统数据_3 */
private Integer sourcetype;

/** 封存状态:未封存_0,已封存_1 */
private Integer sealedstatus;

/** 0-轿车 1-客车 2-货车 3-牵引车 4-专项作业车 5-军警车 99-未知 */
private Integer ordervehitype;

/** */
private String liebianid;

/** */
private String packagenum;

/** 开卡时间 */
private LocalDateTime opencardtime;

/** 开签时间 */
private LocalDateTime openobutime;

/** 激活时间 */
private LocalDateTime activetime;

/** 撤单时间 */
private LocalDateTime canceltime;

/** */
private Integer debittype;

/** 撤单原因 */
private String cancelreason;

/** 退货时间 */
private LocalDateTime returngoodstime;

/** 发货时间 */
private LocalDateTime deliverytime;

/** 挂起时间 */
private LocalDateTime hangtime;

/** 分销渠道编码 */
private String divisionorgcode;

/** 1-自助开卡 2-业务员卡开,3-前装 */
private Integer businesstype;

/** 是否需要进行库存校验,不需要_0,需要_1 */
private Integer isneedstorevalid;

/** 支付金额(单位:分) */
private Integer payamount;

/** 支付时间 */
private LocalDateTime paytime;

/** 支付流水号 */
private String paytransactionid;

/** 支付订单号 */
private String payorderno;

/** 申请人 */
private String applyer;

/** 申请来源:业务员app_1,九州ETC微信小程序_2,后台导入_3,系统导入_4,POS机_5,H5_6,渠道方_7 */
private Integer applysourcetype;

/** 创建时间 */
private LocalDateTime createtime;

/** 更新时间 */
private LocalDateTime updatetime;



/** 订单号 */
@Column(name ="orderNo")
public String getOrderno(){
return this.orderno;
}
/** 订单号 */
public void setOrderno(String orderno){
this.orderno=orderno;
}

/** 渠道编码 */
@Column(name ="orgCode")
public String getOrgcode(){
return this.orgcode;
}
/** 渠道编码 */
public void setOrgcode(String orgcode){
this.orgcode=orgcode;
}

/** 订单状态(-3退货,-2撤销,-1驳回、0待审核、1审核通过) */
@Column(name ="orderStatus")
public Integer getOrderstatus(){
return this.orderstatus;
}
/** 订单状态(-3退货,-2撤销,-1驳回、0待审核、1审核通过) */
public void setOrderstatus(Integer orderstatus){
this.orderstatus=orderstatus;
}

/** 人工审核状态:无需审核_0,待审核1,已审核_2 */
@Column(name ="manualHandStatus")
public Integer getManualhandstatus(){
return this.manualhandstatus;
}
/** 人工审核状态:无需审核_0,待审核1,已审核_2 */
public void setManualhandstatus(Integer manualhandstatus){
this.manualhandstatus=manualhandstatus;
}

/** 线上标识:1线上,2线下,3部中心 */
@Column(name ="isOnline")
public Integer getIsonline(){
return this.isonline;
}
/** 线上标识:1线上,2线下,3部中心 */
public void setIsonline(Integer isonline){
this.isonline=isonline;
}

/** 流程状态:0未开始,1进行中,2已完成 */
@Column(name ="progressStatus")
public Integer getProgressstatus(){
return this.progressstatus;
}
/** 流程状态:0未开始,1进行中,2已完成 */
public void setProgressstatus(Integer progressstatus){
this.progressstatus=progressstatus;
}

/** 领取状态:1未领取,2已领取 */
@Column(name ="receiveStatus")
public Integer getReceivestatus(){
return this.receivestatus;
}
/** 领取状态:1未领取,2已领取 */
public void setReceivestatus(Integer receivestatus){
this.receivestatus=receivestatus;
}

/** 领取人 */
@Column(name ="receiver")
public String getReceiver(){
return this.receiver;
}
/** 领取人 */
public void setReceiver(String receiver){
this.receiver=receiver;
}

/** 领取时间 */
@Column(name ="receiveTime")
public LocalDateTime getReceivetime(){
return this.receivetime;
}
/** 领取时间 */
public void setReceivetime(LocalDateTime receivetime){
this.receivetime=receivetime;
}

/** 审核状态:0未审核,1已审核 */
@Column(name ="reviewStatus")
public Integer getReviewstatus(){
return this.reviewstatus;
}
/** 审核状态:0未审核,1已审核 */
public void setReviewstatus(Integer reviewstatus){
this.reviewstatus=reviewstatus;
}

/** 审批人 */
@Column(name ="reviewer")
public String getReviewer(){
return this.reviewer;
}
/** 审批人 */
public void setReviewer(String reviewer){
this.reviewer=reviewer;
}

/** 审核意见 */
@Column(name ="reviewOpinion")
public String getReviewopinion(){
return this.reviewopinion;
}
/** 审核意见 */
public void setReviewopinion(String reviewopinion){
this.reviewopinion=reviewopinion;
}

/** 审核时间 */
@Column(name ="reviewTime")
public LocalDateTime getReviewtime(){
return this.reviewtime;
}
/** 审核时间 */
public void setReviewtime(LocalDateTime reviewtime){
this.reviewtime=reviewtime;
}

/** 发货状态:0未发货,1已发货,2已退货 */
@Column(name ="deliveryStatus")
public Integer getDeliverystatus(){
return this.deliverystatus;
}
/** 发货状态:0未发货,1已发货,2已退货 */
public void setDeliverystatus(Integer deliverystatus){
this.deliverystatus=deliverystatus;
}

/** ETC卡号 */
@Column(name ="cardId")
public String getCardid(){
return this.cardid;
}
/** ETC卡号 */
public void setCardid(String cardid){
this.cardid=cardid;
}

/** 签号 */
@Column(name ="obuId")
public String getObuid(){
return this.obuid;
}
/** 签号 */
public void setObuid(String obuid){
this.obuid=obuid;
}

/** 推广码 */
@Column(name ="promoterNum")
public String getPromoternum(){
return this.promoternum;
}
/** 推广码 */
public void setPromoternum(String promoternum){
this.promoternum=promoternum;
}

/** 营销码 */
@Column(name ="marketCode")
public String getMarketcode(){
return this.marketcode;
}
/** 营销码 */
public void setMarketcode(String marketcode){
this.marketcode=marketcode;
}

/** 推广渠道编码 */
@Column(name ="promoterChannelNum")
public String getPromoterchannelnum(){
return this.promoterchannelnum;
}
/** 推广渠道编码 */
public void setPromoterchannelnum(String promoterchannelnum){
this.promoterchannelnum=promoterchannelnum;
}

/** 库存推广码 */
@Column(name ="storePromoterNum")
public String getStorepromoternum(){
return this.storepromoternum;
}
/** 库存推广码 */
public void setStorepromoternum(String storepromoternum){
this.storepromoternum=storepromoternum;
}

/** 库存推广渠道编码 */
@Column(name ="storePromoterChannelNum")
public String getStorepromoterchannelnum(){
return this.storepromoterchannelnum;
}
/** 库存推广渠道编码 */
public void setStorepromoterchannelnum(String storepromoterchannelnum){
this.storepromoterchannelnum=storepromoterchannelnum;
}

/** 签约银行渠道编码 */
@Column(name ="signChanel")
public String getSignchanel(){
return this.signchanel;
}
/** 签约银行渠道编码 */
public void setSignchanel(String signchanel){
this.signchanel=signchanel;
}

/** 银行卡号 */
@Column(name ="accountNum")
public String getAccountnum(){
return this.accountnum;
}
/** 银行卡号 */
public void setAccountnum(String accountnum){
this.accountnum=accountnum;
}

/** 开票类型 */
@Column(name ="invoiceType")
public String getInvoicetype(){
return this.invoicetype;
}
/** 开票类型 */
public void setInvoicetype(String invoicetype){
this.invoicetype=invoicetype;
}

/** 开票地州市 */
@Column(name ="invoiceCode")
public String getInvoicecode(){
return this.invoicecode;
}
/** 开票地州市 */
public void setInvoicecode(String invoicecode){
this.invoicecode=invoicecode;
}

/** 申请卡种(1-九州,2-昆仑) */
@Column(name ="cardKind")
public Integer getCardkind(){
return this.cardkind;
}
/** 申请卡种(1-九州,2-昆仑) */
public void setCardkind(Integer cardkind){
this.cardkind=cardkind;
}

/** 办理模式 */
@Column(name ="productModel")
public Integer getProductmodel(){
return this.productmodel;
}
/** 办理模式 */
public void setProductmodel(Integer productmodel){
this.productmodel=productmodel;
}

/** 是否有效(1有效,-1无效) */
@Column(name ="deleteFlag")
public Integer getDeleteflag(){
return this.deleteflag;
}
/** 是否有效(1有效,-1无效) */
public void setDeleteflag(Integer deleteflag){
this.deleteflag=deleteflag;
}

/** 操作人 */
@Column(name ="operator")
public String getOperator(){
return this.operator;
}
/** 操作人 */
public void setOperator(String operator){
this.operator=operator;
}

/** 操作备注 */
@Column(name ="orderMessage")
public String getOrdermessage(){
return this.ordermessage;
}
/** 操作备注 */
public void setOrdermessage(String ordermessage){
this.ordermessage=ordermessage;
}

/** 渠道方申请时间 */
@Column(name ="applyTime")
public LocalDateTime getApplytime(){
return this.applytime;
}
/** 渠道方申请时间 */
public void setApplytime(LocalDateTime applytime){
this.applytime=applytime;
}

/** 中油开卡的用户类型1-个人 2-单位 */
@Column(name ="cnpcUserType")
public Integer getCnpcusertype(){
return this.cnpcusertype;
}
/** 中油开卡的用户类型1-个人 2-单位 */
public void setCnpcusertype(Integer cnpcusertype){
this.cnpcusertype=cnpcusertype;
}

/** 银行签约协议号 */
@Column(name ="contractId")
public String getContractid(){
return this.contractid;
}
/** 银行签约协议号 */
public void setContractid(String contractid){
this.contractid=contractid;
}

/** 1-不是预约用户 2-预约用户 */
@Column(name ="signDetection")
public Integer getSigndetection(){
return this.signdetection;
}
/** 1-不是预约用户 2-预约用户 */
public void setSigndetection(Integer signdetection){
this.signdetection=signdetection;
}

/** 来源类型,接口申请_1,导入数据_2,同步老系统数据_3 */
@Column(name ="sourceType")
public Integer getSourcetype(){
return this.sourcetype;
}
/** 来源类型,接口申请_1,导入数据_2,同步老系统数据_3 */
public void setSourcetype(Integer sourcetype){
this.sourcetype=sourcetype;
}

/** 封存状态:未封存_0,已封存_1 */
@Column(name ="sealedStatus")
public Integer getSealedstatus(){
return this.sealedstatus;
}
/** 封存状态:未封存_0,已封存_1 */
public void setSealedstatus(Integer sealedstatus){
this.sealedstatus=sealedstatus;
}

/** 0-轿车 1-客车 2-货车 3-牵引车 4-专项作业车 5-军警车 99-未知 */
@Column(name ="orderVehiType")
public Integer getOrdervehitype(){
return this.ordervehitype;
}
/** 0-轿车 1-客车 2-货车 3-牵引车 4-专项作业车 5-军警车 99-未知 */
public void setOrdervehitype(Integer ordervehitype){
this.ordervehitype=ordervehitype;
}

/** */
@Column(name ="liebianId")
public String getLiebianid(){
return this.liebianid;
}
/** */
public void setLiebianid(String liebianid){
this.liebianid=liebianid;
}

/** */
@Column(name ="packageNum")
public String getPackagenum(){
return this.packagenum;
}
/** */
public void setPackagenum(String packagenum){
this.packagenum=packagenum;
}

/** 开卡时间 */
@Column(name ="openCardTime")
public LocalDateTime getOpencardtime(){
return this.opencardtime;
}
/** 开卡时间 */
public void setOpencardtime(LocalDateTime opencardtime){
this.opencardtime=opencardtime;
}

/** 开签时间 */
@Column(name ="openObuTime")
public LocalDateTime getOpenobutime(){
return this.openobutime;
}
/** 开签时间 */
public void setOpenobutime(LocalDateTime openobutime){
this.openobutime=openobutime;
}

/** 激活时间 */
@Column(name ="activeTime")
public LocalDateTime getActivetime(){
return this.activetime;
}
/** 激活时间 */
public void setActivetime(LocalDateTime activetime){
this.activetime=activetime;
}

/** 撤单时间 */
@Column(name ="cancelTime")
public LocalDateTime getCanceltime(){
return this.canceltime;
}
/** 撤单时间 */
public void setCanceltime(LocalDateTime canceltime){
this.canceltime=canceltime;
}

/** */
@Column(name ="debitType")
public Integer getDebittype(){
return this.debittype;
}
/** */
public void setDebittype(Integer debittype){
this.debittype=debittype;
}

/** 撤单原因 */
@Column(name ="cancelReason")
public String getCancelreason(){
return this.cancelreason;
}
/** 撤单原因 */
public void setCancelreason(String cancelreason){
this.cancelreason=cancelreason;
}

/** 退货时间 */
@Column(name ="returnGoodsTime")
public LocalDateTime getReturngoodstime(){
return this.returngoodstime;
}
/** 退货时间 */
public void setReturngoodstime(LocalDateTime returngoodstime){
this.returngoodstime=returngoodstime;
}

/** 发货时间 */
@Column(name ="deliveryTime")
public LocalDateTime getDeliverytime(){
return this.deliverytime;
}
/** 发货时间 */
public void setDeliverytime(LocalDateTime deliverytime){
this.deliverytime=deliverytime;
}

/** 挂起时间 */
@Column(name ="hangTime")
public LocalDateTime getHangtime(){
return this.hangtime;
}
/** 挂起时间 */
public void setHangtime(LocalDateTime hangtime){
this.hangtime=hangtime;
}

/** 分销渠道编码 */
@Column(name ="divisionOrgCode")
public String getDivisionorgcode(){
return this.divisionorgcode;
}
/** 分销渠道编码 */
public void setDivisionorgcode(String divisionorgcode){
this.divisionorgcode=divisionorgcode;
}

/** 1-自助开卡 2-业务员卡开,3-前装 */
@Column(name ="businessType")
public Integer getBusinesstype(){
return this.businesstype;
}
/** 1-自助开卡 2-业务员卡开,3-前装 */
public void setBusinesstype(Integer businesstype){
this.businesstype=businesstype;
}

/** 是否需要进行库存校验,不需要_0,需要_1 */
@Column(name ="isNeedStoreValid")
public Integer getIsneedstorevalid(){
return this.isneedstorevalid;
}
/** 是否需要进行库存校验,不需要_0,需要_1 */
public void setIsneedstorevalid(Integer isneedstorevalid){
this.isneedstorevalid=isneedstorevalid;
}

/** 支付金额(单位:分) */
@Column(name ="payAmount")
public Integer getPayamount(){
return this.payamount;
}
/** 支付金额(单位:分) */
public void setPayamount(Integer payamount){
this.payamount=payamount;
}

/** 支付时间 */
@Column(name ="payTime")
public LocalDateTime getPaytime(){
return this.paytime;
}
/** 支付时间 */
public void setPaytime(LocalDateTime paytime){
this.paytime=paytime;
}

/** 支付流水号 */
@Column(name ="payTransactionId")
public String getPaytransactionid(){
return this.paytransactionid;
}
/** 支付流水号 */
public void setPaytransactionid(String paytransactionid){
this.paytransactionid=paytransactionid;
}

/** 支付订单号 */
@Column(name ="payOrderNo")
public String getPayorderno(){
return this.payorderno;
}
/** 支付订单号 */
public void setPayorderno(String payorderno){
this.payorderno=payorderno;
}

/** 申请人 */
@Column(name ="applyer")
public String getApplyer(){
return this.applyer;
}
/** 申请人 */
public void setApplyer(String applyer){
this.applyer=applyer;
}

/** 申请来源:业务员app_1,九州ETC微信小程序_2,后台导入_3,系统导入_4,POS机_5,H5_6,渠道方_7 */
@Column(name ="applySourceType")
public Integer getApplysourcetype(){
return this.applysourcetype;
}
/** 申请来源:业务员app_1,九州ETC微信小程序_2,后台导入_3,系统导入_4,POS机_5,H5_6,渠道方_7 */
public void setApplysourcetype(Integer applysourcetype){
this.applysourcetype=applysourcetype;
}

/** 创建时间 */
@Column(name ="createTime")
public LocalDateTime getCreatetime(){
return this.createtime;
}
/** 创建时间 */
public void setCreatetime(LocalDateTime createtime){
this.createtime=createtime;
}

/** 更新时间 */
@Column(name ="updateTime")
public LocalDateTime getUpdatetime(){
return this.updatetime;
}
/** 更新时间 */
public void setUpdatetime(LocalDateTime updatetime){
this.updatetime=updatetime;
}

}

Notiek ielāde…
Atcelt
Saglabāt