作者 xudada

进港自动发送

  1 +package com.sunyo.wlpt.base.model;
  2 +
  3 +import java.util.Date;
  4 +
  5 +public class CONFIG_FLIGHT_SEND_IMPORT {
  6 + private String id;
  7 +
  8 + private String carrier;
  9 +
  10 + private String flightno;
  11 +
  12 + private String originstation;
  13 +
  14 + private String destinationstation;
  15 +
  16 + private Integer state;
  17 +
  18 + private Date creatDate;
  19 +
  20 + private Date updateTime;
  21 +
  22 + private String opeuser;
  23 +
  24 + public String getId() {
  25 + return id;
  26 + }
  27 +
  28 + public void setId(String id) {
  29 + this.id = id == null ? null : id.trim();
  30 + }
  31 +
  32 + public String getCarrier() {
  33 + return carrier;
  34 + }
  35 +
  36 + public void setCarrier(String carrier) {
  37 + this.carrier = carrier == null ? null : carrier.trim();
  38 + }
  39 +
  40 + public String getFlightno() {
  41 + return flightno;
  42 + }
  43 +
  44 + public void setFlightno(String flightno) {
  45 + this.flightno = flightno == null ? null : flightno.trim();
  46 + }
  47 +
  48 + public String getOriginstation() {
  49 + return originstation;
  50 + }
  51 +
  52 + public void setOriginstation(String originstation) {
  53 + this.originstation = originstation == null ? null : originstation.trim();
  54 + }
  55 +
  56 + public String getDestinationstation() {
  57 + return destinationstation;
  58 + }
  59 +
  60 + public void setDestinationstation(String destinationstation) {
  61 + this.destinationstation = destinationstation == null ? null : destinationstation.trim();
  62 + }
  63 +
  64 + public Integer getState() {
  65 + return state;
  66 + }
  67 +
  68 + public void setState(Integer state) {
  69 + this.state = state;
  70 + }
  71 +
  72 + public Date getCreatDate() {
  73 + return creatDate;
  74 + }
  75 +
  76 + public void setCreatDate(Date creatDate) {
  77 + this.creatDate = creatDate;
  78 + }
  79 +
  80 + public Date getUpdateTime() {
  81 + return updateTime;
  82 + }
  83 +
  84 + public void setUpdateTime(Date updateTime) {
  85 + this.updateTime = updateTime;
  86 + }
  87 +
  88 + public String getOpeuser() {
  89 + return opeuser;
  90 + }
  91 +
  92 + public void setOpeuser(String opeuser) {
  93 + this.opeuser = opeuser == null ? null : opeuser.trim();
  94 + }
  95 +}