排序,字段缺漏

version1
anthonyywj2 3 years ago
parent c3a1ed3a11
commit e0f1355950

@ -51,4 +51,5 @@ public class OrderEntity {
private Date auditTime; private Date auditTime;
private boolean syncOutChange; private boolean syncOutChange;
private String fromSubInvCode; private String fromSubInvCode;
private String createTime;
} }

@ -10,7 +10,7 @@
<if test="id != '' and id!=null"> <if test="id != '' and id!=null">
and id = #{id} and id = #{id}
</if> </if>
<if test="status != '' and status!=null"> <if test="status!=null">
and status = #{status} and status = #{status}
</if> </if>
<if test="type != '' and type!=null"> <if test="type != '' and type!=null">
@ -19,8 +19,8 @@
<if test="scheduleType != '' and scheduleType!=null"> <if test="scheduleType != '' and scheduleType!=null">
and scheduleType = #{scheduleType} and scheduleType = #{scheduleType}
</if> </if>
</where> </where>
order by updateTime desc
</select> </select>

Loading…
Cancel
Save