zoukankan      html  css  js  c++  java
  • 百度上传文件到写入数据库之六

    /*
     * To change this license header, choose License Headers in Project Properties.
     * To change this template file, choose Tools | Templates
     * and open the template in the editor.
     */
    package cn.toher.DataImport;
    
    import java.util.Date;
    
    /**
     *
     * @author Administrator
     */
    public class MigrationData {
        private Date dateData;
        private String ItemType;
        private String callNumber;
        private String packageName;
        private String flowPackage;
        private String lastMonthCalls;
        private String lastMonthFlow;
        private String oneDiscount;
        private String twoDiscount;
        private String threeDiscount;
        private String fourDiscount;
        private String sendCalls;
        private String mobileBrand;
        private String mobileModel;
        private String imei;
        private String customA;
        private String customB;
        private String customC;
        private String customD;
        private String customE;
        private String customF;
        private String level;
        private Integer dataPriority;
        private String dataSource;
        private String parentNo;
        
    
        public MigrationData() {
        }
    
        public String getParentNo() {
            return parentNo;
        }
    
        public void setParentNo(String parentNo) {
            this.parentNo = parentNo;
        }
    
        public Date getDateData() {
            return dateData;
        }
    
        public void setDateData(Date dateData) {
            this.dateData = dateData;
        }
    
        public String getItemType() {
            return ItemType;
        }
    
        public void setItemType(String ItemType) {
            this.ItemType = ItemType;
        }
    
        public String getCallNumber() {
            return callNumber;
        }
    
        public void setCallNumber(String callNumber) {
            this.callNumber = callNumber;
        }
    
        public String getPackageName() {
            return packageName;
        }
    
        public void setPackageName(String packageName) {
            this.packageName = packageName;
        }
    
        public String getFlowPackage() {
            return flowPackage;
        }
    
        public void setFlowPackage(String flowPackage) {
            this.flowPackage = flowPackage;
        }
    
        public String getLastMonthCalls() {
            return lastMonthCalls;
        }
    
        public void setLastMonthCalls(String lastMonthCalls) {
            this.lastMonthCalls = lastMonthCalls;
        }
    
        public String getLastMonthFlow() {
            return lastMonthFlow;
        }
    
        public void setLastMonthFlow(String lastMonthFlow) {
            this.lastMonthFlow = lastMonthFlow;
        }
    
        public String getOneDiscount() {
            return oneDiscount;
        }
    
        public void setOneDiscount(String oneDiscount) {
            this.oneDiscount = oneDiscount;
        }
    
        public String getTwoDiscount() {
            return twoDiscount;
        }
    
        public void setTwoDiscount(String twoDiscount) {
            this.twoDiscount = twoDiscount;
        }
    
        public String getThreeDiscount() {
            return threeDiscount;
        }
    
        public void setThreeDiscount(String threeDiscount) {
            this.threeDiscount = threeDiscount;
        }
    
        public String getFourDiscount() {
            return fourDiscount;
        }
    
        public void setFourDiscount(String fourDiscount) {
            this.fourDiscount = fourDiscount;
        }
    
        public String getSendCalls() {
            return sendCalls;
        }
    
        public void setSendCalls(String sendCalls) {
            this.sendCalls = sendCalls;
        }
    
        public String getMobileBrand() {
            return mobileBrand;
        }
    
        public void setMobileBrand(String mobileBrand) {
            this.mobileBrand = mobileBrand;
        }
    
        public String getMobileModel() {
            return mobileModel;
        }
    
        public void setMobileModel(String mobileModel) {
            this.mobileModel = mobileModel;
        }
    
        public String getImei() {
            return imei;
        }
    
        public void setImei(String imei) {
            this.imei = imei;
        }
    
        public String getCustomA() {
            return customA;
        }
    
        public void setCustomA(String customA) {
            this.customA = customA;
        }
    
        public String getCustomB() {
            return customB;
        }
    
        public void setCustomB(String customB) {
            this.customB = customB;
        }
    
        public String getCustomC() {
            return customC;
        }
    
        public void setCustomC(String customC) {
            this.customC = customC;
        }
    
        public String getCustomD() {
            return customD;
        }
    
        public void setCustomD(String customD) {
            this.customD = customD;
        }
    
        public String getCustomE() {
            return customE;
        }
    
        public void setCustomE(String customE) {
            this.customE = customE;
        }
    
        public String getCustomF() {
            return customF;
        }
    
        public void setCustomF(String customF) {
            this.customF = customF;
        }
    
        public String getLevel() {
            return level;
        }
    
        public void setLevel(String level) {
            this.level = level;
        }
    
        public Integer getDataPriority() {
            return dataPriority;
        }
    
        public void setDataPriority(Integer dataPriority) {
            this.dataPriority = dataPriority;
        }
    
    
        public String getDataSource() {
            return dataSource;
        }
    
        public void setDataSource(String dataSource) {
            this.dataSource = dataSource;
        }
        
        
    }
  • 相关阅读:
    设计模式之单例模式
    SpringBoot与mongodb的结合
    Spring boot整合Swagger
    阿里巴巴规约没有注意的点
    利用Maven插件将依赖包、jar/war包及配置文件输出到指定目录
    Spring注解开发-全面解析常用注解使用方法之生命周期
    描述 Vue 组件生命周期(有父子组件的情况)
    vue单页面,多路由,前进刷新,后退不刷新
    element ui el-upload上传组件时session丢失问题
    实现uni-app 通讯录按照字母排序 的pinyin.js
  • 原文地址:https://www.cnblogs.com/itchenfirst/p/7285787.html
Copyright © 2011-2022 走看看