多语言(英语、法语、西班牙语、德语、波兰语、阿拉伯语)修改
This commit is contained in:
@ -21,6 +21,21 @@ public class CurveConfig implements Serializable {
|
||||
@ApiModelProperty(value = "曲线名称(英文)")
|
||||
private String curveNameEn;
|
||||
|
||||
@ApiModelProperty(value = "曲线名称(法语)")
|
||||
private String curveNameFra;
|
||||
|
||||
@ApiModelProperty(value = "曲线名称(西班牙语)")
|
||||
private String curveNameSpa;
|
||||
|
||||
@ApiModelProperty(value = "曲线名称(德语)")
|
||||
private String curveNameDe;
|
||||
|
||||
@ApiModelProperty(value = "曲线名称(波兰语)")
|
||||
private String curveNamePl;
|
||||
|
||||
@ApiModelProperty(value = "曲线名称(阿拉伯语)")
|
||||
private String curveNameAra;
|
||||
|
||||
@ApiModelProperty(value = "曲线类型")
|
||||
private Integer curveType;
|
||||
|
||||
|
||||
@ -410,22 +410,22 @@
|
||||
name = #{record.name,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.nameEn != null">
|
||||
name = #{record.nameEn,jdbcType=VARCHAR},
|
||||
name_en = #{record.nameEn,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.nameFra != null">
|
||||
name = #{record.nameFra,jdbcType=VARCHAR},
|
||||
name_fra = #{record.nameFra,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.nameSpa != null">
|
||||
name = #{record.nameSpa,jdbcType=VARCHAR},
|
||||
name_spa = #{record.nameSpa,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.nameDe != null">
|
||||
name = #{record.nameDe,jdbcType=VARCHAR},
|
||||
name_de = #{record.nameDe,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.namePl != null">
|
||||
name = #{record.namePl,jdbcType=VARCHAR},
|
||||
name_pl = #{record.namePl,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.nameAra != null">
|
||||
name = #{record.nameAra,jdbcType=VARCHAR},
|
||||
name_ara = #{record.nameAra,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.address != null">
|
||||
address = #{record.address,jdbcType=VARCHAR},
|
||||
@ -506,22 +506,22 @@
|
||||
province = #{record.province},
|
||||
</if>
|
||||
<if test="record.provinceEn != null">
|
||||
province = #{record.provinceEn},
|
||||
province_en = #{record.provinceEn},
|
||||
</if>
|
||||
<if test="record.provinceFra != null">
|
||||
province = #{record.provinceFra},
|
||||
province_fra = #{record.provinceFra},
|
||||
</if>
|
||||
<if test="record.provinceSpa != null">
|
||||
province = #{record.provinceSpa},
|
||||
province_spa = #{record.provinceSpa},
|
||||
</if>
|
||||
<if test="record.provinceDe != null">
|
||||
province = #{record.provinceDe},
|
||||
province_de = #{record.provinceDe},
|
||||
</if>
|
||||
<if test="record.provincePl != null">
|
||||
province = #{record.provincePl},
|
||||
province_pl = #{record.provincePl},
|
||||
</if>
|
||||
<if test="record.provinceAra != null">
|
||||
province = #{record.provinceAra},
|
||||
province_ara = #{record.provinceAra},
|
||||
</if>
|
||||
<if test="record.city != null">
|
||||
city = #{record.city},
|
||||
@ -542,22 +542,22 @@
|
||||
nation = #{record.nation},
|
||||
</if>
|
||||
<if test="record.nationEn != null">
|
||||
nation = #{record.nationEn},
|
||||
nation_en = #{record.nationEn},
|
||||
</if>
|
||||
<if test="record.nationFra != null">
|
||||
nation = #{record.nationFra},
|
||||
nation_fra = #{record.nationFra},
|
||||
</if>
|
||||
<if test="record.nationSpa != null">
|
||||
nation = #{record.nationSpa},
|
||||
nation_spa = #{record.nationSpa},
|
||||
</if>
|
||||
<if test="record.nationDe != null">
|
||||
nation = #{record.nationDe},
|
||||
nation_de = #{record.nationDe},
|
||||
</if>
|
||||
<if test="record.nationPl != null">
|
||||
nation = #{record.nationPl},
|
||||
nation_pl = #{record.nationPl},
|
||||
</if>
|
||||
<if test="record.nationAra != null">
|
||||
nation = #{record.nationAra},
|
||||
nation_ara = #{record.nationAra},
|
||||
</if>
|
||||
</set>
|
||||
where id = #{record.id,jdbcType=INTEGER}
|
||||
|
||||
Reference in New Issue
Block a user