车辆管理增加区域
parent
5f1138ca24
commit
bd19e0cd0a
10
pom.xml
10
pom.xml
|
@ -431,7 +431,7 @@
|
|||
<!-- 辅助依赖包 _end -->
|
||||
|
||||
<!-- 工具包 -->
|
||||
<!-- JSON begin -->
|
||||
<!--JSON begin -->
|
||||
<!--<dependency>-->
|
||||
<!--<groupId>org.codehaus.jackson</groupId>-->
|
||||
<!--<artifactId>jackson-mapper-asl</artifactId>-->
|
||||
|
@ -816,11 +816,12 @@
|
|||
<version>${guava.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- jeecg plugin -->
|
||||
<!--jeecg plugin-->
|
||||
<dependency>
|
||||
<groupId>org.p3framework</groupId>
|
||||
<artifactId>jeecg-p3-core</artifactId>
|
||||
<version>1.1.2</version>
|
||||
|
||||
</dependency>
|
||||
<!--<dependency>-->
|
||||
<!--<groupId>org.p3framework</groupId>-->
|
||||
|
@ -963,6 +964,11 @@
|
|||
<!--<version>2.5.1</version>-->
|
||||
<!--</dependency>-->
|
||||
<!-- swagger end -->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<dependency>
|
||||
<groupId>org.jdom</groupId>
|
||||
<artifactId>jdom2</artifactId>
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -68,7 +68,8 @@ public class TmsMdCheliangEntity implements java.io.Serializable {
|
|||
/**gps*/
|
||||
@Excel(name="gps",width=15)
|
||||
private String gpsid;
|
||||
|
||||
@Excel(name="区域",width=15)
|
||||
private java.lang.String quyu;
|
||||
/**
|
||||
*方法: 取得java.lang.String
|
||||
*@return: java.lang.String 主键
|
||||
|
@ -392,4 +393,22 @@ public class TmsMdCheliangEntity implements java.io.Serializable {
|
|||
public void setGpsid(String gpsid){
|
||||
this.gpsid = gpsid;
|
||||
}
|
||||
|
||||
/**
|
||||
*方法: 取得java.lang.String
|
||||
*@return: java.lang.String 区域
|
||||
*/
|
||||
|
||||
@Column(name ="QUYU",nullable=true,length=32)
|
||||
public java.lang.String getQuyu(){
|
||||
return this.quyu;
|
||||
}
|
||||
|
||||
/**
|
||||
*方法: 设置java.lang.String
|
||||
*@param: java.lang.String 区域
|
||||
*/
|
||||
public void setQuyu(java.lang.String quyu){
|
||||
this.quyu = quyu;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -70,6 +70,10 @@
|
|||
<label class="Validform_label">gps:</label>
|
||||
<input id="gpsid" name="gpsid" type="text" style="width: 150px" class="inputxt" ignore="ignore" />
|
||||
<span class="Validform_checktip"></span>
|
||||
</div> <div class="form">
|
||||
<label class="Validform_label">区域:</label>
|
||||
<input id="quyu" name="quyu" type="text" style="width: 150px" class="inputxt" ignore="ignore" />
|
||||
<span class="Validform_checktip"></span>
|
||||
</div>
|
||||
</fieldset>
|
||||
</t:formvalid>
|
||||
|
|
|
@ -69,6 +69,11 @@
|
|||
<input id="gpsid" name="gpsid" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${tmsMdCheliangPage.gpsid}'/>
|
||||
<span class="Validform_checktip"></span>
|
||||
</div>
|
||||
<div class="form">
|
||||
<label class="Validform_label">区域:</label>
|
||||
<input id="quyu" name="quyu" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${tmsMdCheliangPage.quyu}'/>
|
||||
<span class="Validform_checktip"></span>
|
||||
</div>
|
||||
</fieldset>
|
||||
</t:formvalid>
|
||||
</body>
|
||||
|
|
|
@ -24,6 +24,8 @@
|
|||
<t:dgCol title="备注" field="beizhu" queryMode="group" width="120"></t:dgCol>
|
||||
<t:dgCol title="默认司机" field="username" queryMode="group" width="120"></t:dgCol>
|
||||
<t:dgCol title="gps" field="gpsid" queryMode="group" width="120"></t:dgCol>
|
||||
<t:dgCol title="区域" field="quyu" queryMode="single" width="120"></t:dgCol>
|
||||
|
||||
<t:dgCol title="操作" field="opt" width="100"></t:dgCol>
|
||||
<t:dgDelOpt title="删除" url="tmsMdCheliangController.do?doDel&id={id}" urlclass="ace_button" urlfont="fa-trash-o"/>
|
||||
<t:dgToolBar title="录入" icon="icon-add" url="tmsMdCheliangController.do?goAdd" funname="add"></t:dgToolBar>
|
||||
|
|
Loading…
Reference in New Issue