修复主数据下发%问题

This commit is contained in:
yuqh 2025-01-15 14:09:37 +08:00
parent 78b3fa5dac
commit 4ba5e21071
4 changed files with 22 additions and 1 deletions

View File

@ -43,6 +43,24 @@ public class DeliveryDetailEntity extends BaseEntity {
private String csocode;
//税率
private String itaxrate;
private String AccId;
private String dbname;
public String getDbname() {
return dbname;
}
public void setDbname(String dbname) {
this.dbname = dbname;
}
public String getAccId() {
return AccId;
}
public void setAccId(String accId) {
AccId = accId;
}
public String getDlid() {
return dlid;

View File

@ -19,6 +19,7 @@
<result property="iorderrowno" column="iorderrowno" />
<result property="csocode" column="csocode" />
<result property="itaxrate" column="itaxrate" />
<result property="AccId" column="AccId" />
</resultMap>
<sql id="DeliveryDetailEntity_Base_Column_List">
dlid,
@ -48,6 +49,7 @@
<if test="dlid != null ">DLID = #{dlid} </if>
<if test="cwhcode != null and cwhcode !='' "> and cwhcode = #{cwhcode} </if>
</trim>
and dbname = #{dbname}
order by dlid,irowno
</select>
</mapper>

View File

@ -17,6 +17,8 @@
<result property="dmodifysystime" column="dmodifysystime" />
<result property="pushFlagField" column="pushFlagField" />
<result property="dbname" column="dbname" />
<result property="AccId" column="AccId" />
<result property="AccId" column="accid" />
</resultMap>
<sql id="DeliveryOrder_Base_Column_List">
dlid,

View File

@ -16,4 +16,3 @@
where id = #{id} and AccId = #{AccId}
</select>
</mapper>
`