Commit dd8c2967 by 高晓磊

运输车辆违规记录车牌号字段

parent 4cd9e144
...@@ -24,13 +24,13 @@ import java.util.UUID; ...@@ -24,13 +24,13 @@ import java.util.UUID;
* @author scol * @author scol
*/ */
@RestController() @RestController()
@RequestMapping({"/warehouse/api/price/adjustment","/price/adjustment"})
public class PriceAdjustmentController { public class PriceAdjustmentController {
@Autowired @Autowired
private PriceAdjustmentService priceAdjustmentService; private PriceAdjustmentService priceAdjustmentService;
@RequestMapping(value = "list/page", method = RequestMethod.GET) @RequestMapping(value = "/list/page", method = RequestMethod.GET)
public ResponseObj getListPage(@RequestBody PriceAdjustmentSearchEntity<KObject> priceAdjustmentSearchEntity) throws Exception { public ResponseObj getListPage(@RequestBody PriceAdjustmentSearchEntity<KObject> priceAdjustmentSearchEntity) throws Exception {
Page<KObject> objectPage = new Page<>(); Page<KObject> objectPage = new Page<>();
......
...@@ -145,7 +145,8 @@ ...@@ -145,7 +145,8 @@
<m:name></m:name> <m:name></m:name>
<m:type></m:type> <m:type></m:type>
</m:ref> </m:ref>
</m:field> <m:desc></m:desc>
</m:field>
<m:field> <m:field>
<m:name>sandMiningArea.sandMiningAreaType</m:name> <m:name>sandMiningArea.sandMiningAreaType</m:name>
<m:title>采砂区域类型</m:title> <m:title>采砂区域类型</m:title>
......
...@@ -156,6 +156,16 @@ ...@@ -156,6 +156,16 @@
</m:ref> </m:ref>
<m:desc></m:desc> <m:desc></m:desc>
</m:field> </m:field>
<m:field>
<m:name>del</m:name>
<m:title>删除</m:title>
<m:type>boolean</m:type>
<m:ref>
<m:name></m:name>
<m:type></m:type>
</m:ref>
<m:desc></m:desc>
</m:field>
</m:fields> </m:fields>
</m:query> </m:query>
</content> </content>
......
...@@ -50,6 +50,12 @@ ...@@ -50,6 +50,12 @@
<comment>违规时间</comment> <comment>违规时间</comment>
</column> </column>
</property> </property>
<property name="plateNumber" type="nstring" not-null="true">
<column name="plateNumber" length="11">
<comment>车牌号</comment>
</column>
</property>
<property name="description" type="nstring" not-null="true"> <property name="description" type="nstring" not-null="true">
<column name="description" length="1000"> <column name="description" length="1000">
<comment>违规描述</comment> <comment>违规描述</comment>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment