package cn.com.taiji.core.model.comm.protocol.ias.portal; | |||||
import lombok.Getter; | |||||
import lombok.Setter; | |||||
import lombok.experimental.Accessors; | |||||
/*** | |||||
* | |||||
* @Author weicailin | |||||
* @Date 2023/3/14 16:53 | |||||
* @Email 13079168756@163.com | |||||
*/ | |||||
@Getter | |||||
@Setter | |||||
@Accessors(chain = true) | |||||
public class LogoutResponse extends AbstractPortalResponse { | |||||
} |
package cn.com.taiji.core.repo.jpa.comm; | |||||
import cn.com.taiji.common.repo.jpa.AbstractJpaRepo; | |||||
import cn.com.taiji.core.entity.comm.IawVehicleBind; | |||||
import org.springframework.data.jpa.repository.Query; | |||||
import java.util.List; | |||||
public interface IawVehicleBindRepo extends AbstractJpaRepo<IawVehicleBind,String> { | |||||
@Query(" from IawVehicleBind where openId = ?1 order by bindTime desc") | |||||
List<IawVehicleBind> queryVehicleBind(String openId); | |||||
} |
package cn.com.taiji.core.repo.jpa.issue; | |||||
import cn.com.taiji.common.repo.jpa.AbstractJpaRepo; | |||||
import cn.com.taiji.core.entity.issue.IssueOrderAddress; | |||||
public interface IssueOrderAddressRepo extends AbstractJpaRepo<IssueOrderAddress, String>{ | |||||
} |
package cn.com.taiji.ias.manager.bill.model; | |||||
public enum HtlRequestMethod { | |||||
BILLRAISEINSERT("发票抬头添加","/qtzlinvoice/addInvoiceTitle",1), | |||||
BILLRAISEDELETE("发票抬头删除","/qtzlinvoice/deleteInvoiceTitle",2), | |||||
BILLRAISEUPDATE("发票抬头修改","/qtzlinvoice/editInvoiceTitle",3), | |||||
BILLRECORD("发票开票记录","/qtzlinvoice/queryInvoice",4), | |||||
BILLREVERSAL("发票红冲","/qtzlinvoice/invocieReversal",5), | |||||
BILLMERGEINVOICING("ETC产品合并开票","/qtzlinvoice/batchOpenEtcProductInvoice",6), | |||||
BILLORDERPUSH("发票订单补推","",7), | |||||
; | |||||
private String value; | |||||
private String uri; | |||||
private int code; | |||||
HtlRequestMethod(String value, String uri, int code) { | |||||
this.value = value; | |||||
this.uri = uri; | |||||
this.code = code; | |||||
} | |||||
public static HtlRequestMethod getByCode(int code) { | |||||
for (HtlRequestMethod method : HtlRequestMethod.values()) { | |||||
if (method.getCode() == code) { | |||||
return method; | |||||
} | |||||
} | |||||
return null; | |||||
} | |||||
public static HtlRequestMethod getByValue(String value) { | |||||
for (HtlRequestMethod method : HtlRequestMethod.values()) { | |||||
if (method.getValue().equals(value)) { | |||||
return method; | |||||
} | |||||
} | |||||
return null; | |||||
} | |||||
public String getValue() { | |||||
return value; | |||||
} | |||||
public void setValue(String value) { | |||||
this.value = value; | |||||
} | |||||
public String getUri() { | |||||
return uri; | |||||
} | |||||
public void setUri(String uri) { | |||||
this.uri = uri; | |||||
} | |||||
public int getCode() { | |||||
return code; | |||||
} | |||||
public void setCode(int code) { | |||||
this.code = code; | |||||
} | |||||
} |
package cn.com.taiji.ias.model.refundHttp; | |||||
import cn.com.taiji.ias.model.refundHttp.model.GetOriginListAsyncModel; | |||||
import lombok.Getter; | |||||
import lombok.Setter; | |||||
@Getter | |||||
@Setter | |||||
public class GetOriginListAsyncResponse extends AbstractResponse<GetOriginListAsyncModel>{ | |||||
} |
package cn.com.taiji.ias.model.refundHttp; | |||||
import cn.com.taiji.ias.model.refundHttp.model.QueryNewRefundAsyncModel; | |||||
import com.fasterxml.jackson.annotation.JsonProperty; | |||||
import lombok.Getter; | |||||
import lombok.Setter; | |||||
@Getter | |||||
@Setter | |||||
public class QueryNewRefundAsyncResponse extends AbstractResponse<QueryNewRefundAsyncModel> { | |||||
@JsonProperty("totalcount") | |||||
private Integer totalCount; | |||||
} |