Commit dd8c2967 by 高晓磊

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

parent 4cd9e144
......@@ -24,13 +24,13 @@ import java.util.UUID;
* @author scol
*/
@RestController()
@RequestMapping({"/warehouse/api/price/adjustment","/price/adjustment"})
public class PriceAdjustmentController {
@Autowired
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 {
Page<KObject> objectPage = new Page<>();
......
......@@ -145,7 +145,8 @@
<m:name></m:name>
<m:type></m:type>
</m:ref>
</m:field>
<m:desc></m:desc>
</m:field>
<m:field>
<m:name>sandMiningArea.sandMiningAreaType</m:name>
<m:title>采砂区域类型</m:title>
......
......@@ -156,6 +156,16 @@
</m:ref>
<m:desc></m:desc>
</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:query>
</content>
......
......@@ -50,6 +50,12 @@
<comment>违规时间</comment>
</column>
</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">
<column name="description" length="1000">
<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