Compare commits
2 Commits
ecbf580e80
...
a0a0ce7f28
| Author | SHA1 | Date |
|---|---|---|
|
|
a0a0ce7f28 | |
|
|
1440b673d6 |
|
|
@ -96,9 +96,20 @@ public class PurchaseMacodeInfo extends BaseEntity
|
||||||
this.checkUrl = checkUrl;
|
this.checkUrl = checkUrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getCheckUrlName() {
|
||||||
|
return checkUrlName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCheckUrlName(String checkUrlName) {
|
||||||
|
this.checkUrlName = checkUrlName;
|
||||||
|
}
|
||||||
|
|
||||||
/** 验收材料 */
|
/** 验收材料 */
|
||||||
@ApiModelProperty(value = "验收材料")
|
@ApiModelProperty(value = "验收材料")
|
||||||
private String checkUrl;
|
private String checkUrl;
|
||||||
|
/** 验收材料名称 */
|
||||||
|
@ApiModelProperty(value = "验收材料名称")
|
||||||
|
private String checkUrlName;
|
||||||
|
|
||||||
/** 验收数量 */
|
/** 验收数量 */
|
||||||
@ApiModelProperty(value = "绑定数量")
|
@ApiModelProperty(value = "绑定数量")
|
||||||
|
|
|
||||||
|
|
@ -367,7 +367,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="selectPutinDetails" resultType="com.bonus.sgzb.material.domain.PurchaseMacodeInfo">
|
<select id="selectPutinDetails" resultType="com.bonus.sgzb.material.domain.PurchaseMacodeInfo">
|
||||||
select pcd.production_time productionTime,
|
select pcd.production_time productionTime,
|
||||||
mt.type_name specificationType,
|
mt.type_name specificationType,
|
||||||
mt1.type_name typeName,
|
mt1.type_name typeName,
|
||||||
pmi.ma_code maCode,
|
pmi.ma_code maCode,
|
||||||
|
|
@ -375,6 +375,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
pmi.fix_code fixCode,
|
pmi.fix_code fixCode,
|
||||||
pcd.type_id typeId,
|
pcd.type_id typeId,
|
||||||
pcd.task_id taskId,
|
pcd.task_id taskId,
|
||||||
|
pcd.check_url_name checkUrlName,
|
||||||
pcd.check_url checkUrl,
|
pcd.check_url checkUrl,
|
||||||
tt.task_status taskStatus,
|
tt.task_status taskStatus,
|
||||||
mt.code specsCode,
|
mt.code specsCode,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue