Merge remote-tracking branch 'origin/main'

This commit is contained in:
coolleave
2025-05-13 21:21:31 +08:00
23 changed files with 392 additions and 70 deletions

View File

@@ -13,6 +13,7 @@ import java.util.List;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.core.domain.BaseEntity;
import org.springframework.format.annotation.DateTimeFormat;
/**
* 出库单管理业务对象 sys_oa_warehouse_master
@@ -45,6 +46,8 @@ public class SysOaWarehouseMasterBo extends BaseEntity {
/**
* 编写日期
*/
@JsonFormat(pattern = "yyyy-MM-dd")
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date signTime;
/**

View File

@@ -92,6 +92,8 @@ public class OaProgressVo {
private List<OaProgressVo> children;
private List<OaProgressDetailVo> tasks;
/**
* 联系人电话
*/

View File

@@ -230,6 +230,11 @@ public class SysOaProjectVo {
*/
private Long tradeType;
/**
* 总完成度
*/
private Long progress;
/**
* 预付款
*/

View File

@@ -32,7 +32,7 @@ public class SysOaWarehouseVo extends SysOaWarehouse {
* 序号
*/
@ExcelProperty(value = "序号")
private Long temp;
private String temp;
/**