采购单推送入库预约接口开发

This commit is contained in:
God
2024-07-31 15:19:46 +08:00
parent bdc27aa5d8
commit 23866b6afe
2 changed files with 7 additions and 0 deletions

View File

@@ -5,6 +5,11 @@
<!-- ${ew.customSqlSegment} --> <!-- ${ew.customSqlSegment} -->
<select id="selectPageVo" resultType="com.yxt.purchase.biz.purchasebill.PurchaseBillVo"> <select id="selectPageVo" resultType="com.yxt.purchase.biz.purchasebill.PurchaseBillVo">
SELECT SELECT
case pb.state
when 0 then '未审核'
when 1 then '审核中'
when 2 then '已审核'
when 3 then '审核未通过' end as state,
pb.sid, pb.sid,
pb.createTime, pb.createTime,
pb.billNo, pb.billNo,

View File

@@ -40,6 +40,8 @@ public class PurchaseBillVo implements Vo {
private String sid; // sid private String sid; // sid
@ApiModelProperty("审核状态")
private String state;
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
@ApiModelProperty("业务日期") @ApiModelProperty("业务日期")
private Date createTime; private Date createTime;