Administrator
2025-04-23 595b7935a30e84fba1bc3561d05f9d19d3e32e1f
src/main/java/com/taoke/autopay/dto/DYOrderDto.java
@@ -48,10 +48,9 @@
    private Long create_time;
    private String _create_time;
    private String source;
    private List<String> product_name;
    private List<String> order_type;
    private List<Integer> order_expire_time;
    private List<String> product_id_str;
    private List<DYSkuOrderDto> sku_order_list;
    private String orderChannel;
    public Long getApp_id() {
        return app_id;
@@ -157,35 +156,19 @@
        this.source = source;
    }
    public List<String> getProduct_name() {
        return product_name;
    public List<DYSkuOrderDto> getSku_order_list() {
        return sku_order_list;
    }
    public void setProduct_name(List<String> product_name) {
        this.product_name = product_name;
    public void setSku_order_list(List<DYSkuOrderDto> sku_order_list) {
        this.sku_order_list = sku_order_list;
    }
    public List<String> getOrder_type() {
        return order_type;
    public String getOrderChannel() {
        return orderChannel;
    }
    public void setOrder_type(List<String> order_type) {
        this.order_type = order_type;
    }
    public List<Integer> getOrder_expire_time() {
        return order_expire_time;
    }
    public void setOrder_expire_time(List<Integer> order_expire_time) {
        this.order_expire_time = order_expire_time;
    }
    public List<String> getProduct_id_str() {
        return product_id_str;
    }
    public void setProduct_id_str(List<String> product_id_str) {
        this.product_id_str = product_id_str;
    public void setOrderChannel(String orderChannel) {
        this.orderChannel = orderChannel;
    }
}