Commit 12f28869 by ilal Committed by chenzg

提交

parent 94c5b016
......@@ -22,6 +22,8 @@ public class PayTermDto implements Serializable {
String xremarks;// 项备注
Integer xgsid;// 项对应的公式id
String xgsgs;// 项公式
Integer xiscustom;//是否自定义项(0:否;1:是)
/**
* 公式变量值1
*/
......
......@@ -34,6 +34,7 @@
<result column="xdygk" property="xdygk"/>
<result column="xdegk" property="xdegk"/>
<result column="xjxgzid" property="xjxgzid"/>
<result column="xiscustom" property="xiscustom"/>
</resultMap>
......@@ -62,7 +63,8 @@
gzzx.gsid as xgsid,
gzzx.gsgs as xgsgs,
gzzx.dygk as xdygk,
gzzx.degk as xdegk
gzzx.degk as xdegk,
gzzx.is_custom as xiscustom
from xcgl_asso_jsgzzx gzzx
where gzzx.jxgzid = 0
and gzzx.xzzid = #{xzzid}
......
......@@ -33,6 +33,7 @@
<result column="xdegk" property="xdegk"/>
<result column="xjxgzid" property="xjxgzid"/>
<result column="xoptionid" property="xoptionid"/>
<result column="xiscustom" property="xiscustom"/>
</collection>
</resultMap>
......@@ -186,7 +187,8 @@
gzzx.degk as xdegk,
gzzx.jxgzid as xjxgzid,
gzzx.optionid as xoptionid,
jxgz.xzzid as zxzzid
jxgz.xzzid as zxzzid,
gzzx.is_custom as xiscustom
from xcgl_asso_jxgz jxgz
LEFT JOIN xcgl_asso_jsgzzx as gzzx on gzzx.jxgzid = jxgz.id
where jxgz.xzzid = #{xzzid}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment