feat(crm): 添加订单定金相关字段支持
- 在CrmOrder实体类中新增unitPriceRemark、depositPayable、depositPaid、depositRatio字段 - 在CrmOrderBo业务对象中同步添加对应字段以支持查询条件 - 更新CrmOrderMapper.xml映射文件中的结果集和SQL查询语句 - 在CrmOrderServiceImpl服务实现中添加字段的查询条件处理逻辑 - 在CrmOrderVo视图对象中添加Excel导出注解配置 - 实现定金相关的业务查询功能包括应付定金、已付定金、定金比例等字段的检索
This commit is contained in:
@@ -185,6 +185,26 @@ public class CrmOrder extends BaseEntity {
|
||||
*/
|
||||
private String productionSchedule;
|
||||
|
||||
/**
|
||||
* 算单价备注
|
||||
*/
|
||||
private String unitPriceRemark;
|
||||
|
||||
/**
|
||||
* 应付定金(万元)
|
||||
*/
|
||||
private BigDecimal depositPayable;
|
||||
|
||||
/**
|
||||
* 已付定金(万元)
|
||||
*/
|
||||
private BigDecimal depositPaid;
|
||||
|
||||
/**
|
||||
* 定金比例(%)
|
||||
*/
|
||||
private BigDecimal depositRatio;
|
||||
|
||||
/**
|
||||
* 合同状态 0=草稿 1=生效 2=作废 3=已完成
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user