Blame view

src/main/java/com/rnt/model/park/base/BaseParkFreeBerth.java 1.46 KB
e80df919   atao   init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
  package com.rnt.model.park.base;
  
  import com.jfinal.plugin.activerecord.Model;
  import com.jfinal.plugin.activerecord.IBean;
  
  /**
   * Generated by JFinal, do not modify this file.
   */
  @SuppressWarnings({"serial", "unchecked"})
  public abstract class BaseParkFreeBerth<M extends BaseParkFreeBerth<M>> extends Model<M> implements IBean {
  
  	public M setId(java.lang.Long id) {
  		set("id", id);
  		return (M)this;
  	}
  
  	public java.lang.Long getId() {
  		return get("id");
  	}
  
  	public M setPlId(java.lang.Long plId) {
  		set("pl_id", plId);
  		return (M)this;
  	}
  
  	public java.lang.Long getPlId() {
  		return get("pl_id");
  	}
  
  	public M setPlName(java.lang.String plName) {
  		set("pl_name", plName);
  		return (M)this;
  	}
  
  	public java.lang.String getPlName() {
  		return get("pl_name");
  	}
  
  	public M setPlNo(java.lang.String plNo) {
  		set("pl_no", plNo);
  		return (M)this;
  	}
  
  	public java.lang.String getPlNo() {
  		return get("pl_no");
  	}
  
  	public M setFreeBerth(java.lang.Integer freeBerth) {
  		set("free_berth", freeBerth);
  		return (M)this;
  	}
  
  	public java.lang.Integer getFreeBerth() {
  		return get("free_berth");
  	}
  
  	public M setDataStatus(java.lang.Integer dataStatus) {
  		set("data_status", dataStatus);
  		return (M)this;
  	}
  
  	public java.lang.Integer getDataStatus() {
  		return get("data_status");
  	}
  
  	public M setModiftyTime(java.util.Date modiftyTime) {
  		set("modifty_time", modiftyTime);
  		return (M)this;
  	}
  
  	public java.util.Date getModiftyTime() {
  		return get("modifty_time");
  	}
  
  }