feat(order): 添加签约公司字段支持- 在 GearOrder 实体类中新增 company 字段- 在 GearOrderBo 业务对象中同步添加 company 字段
- 更新 GearOrderMapper.xml 映射文件以支持 company 字段的读写 - 在 GearOrderVo 视图对象中增加 company 字段并配置 Excel 导出属性 - 在前端订单页面中增加签约公司下拉选择框 - 引入并使用 order_company 字典数据用于签约公司选项 - 初始化表单中的 company 字段为 undefined - 在 Vue 组件中注册 order_company 数据字典
This commit is contained in:
@@ -36,6 +36,10 @@ public class GearOrder extends BaseEntity {
|
||||
* 客户ID
|
||||
*/
|
||||
private Long customerId;
|
||||
/**
|
||||
* 签约公司(字典)
|
||||
*/
|
||||
private Integer company;
|
||||
/**
|
||||
* 销售经理
|
||||
*/
|
||||
|
||||
@@ -38,6 +38,11 @@ public class GearOrderBo extends BaseEntity {
|
||||
*/
|
||||
private Long customerId;
|
||||
|
||||
/**
|
||||
* 签约公司(字典)
|
||||
*/
|
||||
private Integer company;
|
||||
|
||||
/**
|
||||
* 销售经理
|
||||
*/
|
||||
|
||||
@@ -43,6 +43,12 @@ public class GearOrderVo extends BaseEntity {
|
||||
@ExcelProperty(value = "客户ID")
|
||||
private Long customerId;
|
||||
|
||||
/**
|
||||
* 签约公司(字典)
|
||||
*/
|
||||
@ExcelProperty(value = "签约公司")
|
||||
private Integer company;
|
||||
|
||||
/**
|
||||
* 销售经理
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user