fix:涉密场所添加字段

pg_adapter
wangxy 6 months ago
parent 023692a12e
commit 13e8a74e0e

@ -42,6 +42,10 @@ public class TdPlaceManager {
tdPlace.setCreateBy(ShiroUtils.getSysUser().getLoginName()); tdPlace.setCreateBy(ShiroUtils.getSysUser().getLoginName());
tdPlace.setCreateTime(new Date()); tdPlace.setCreateTime(new Date());
} }
tdPlace.setState("1");
tdPlace.setIsDissolve("0");
tdPlace.setAfterName(tdPlace.getPlaceName());
tdPlace.setAfterRule(tdPlace.getPlaceRule());
return placeService.saveOrUpdate(tdPlace); return placeService.saveOrUpdate(tdPlace);
} }

@ -4,11 +4,14 @@ import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.core.domain.BaseEntity; import com.ruoyi.common.core.domain.BaseEntity;
import lombok.Data; import lombok.Data;
import lombok.EqualsAndHashCode; import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors; import lombok.experimental.Accessors;
import java.util.Date;
/** /**
* *
* @author 13560 * @author 13560
@ -35,6 +38,34 @@ public class TdPlace extends BaseEntity {
private String placeRule; private String placeRule;
/**
*
*/
private String afterName;
/**
*
*/
private String afterRule;
/**
* :120
*/
private String state;
/**
* 01
*/
private String isDissolve;
/** 变更后时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date afterTime;
@TableField(exist = false) @TableField(exist = false)
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
} }

@ -13,6 +13,11 @@
<result property="updateBy" column="update_by" jdbcType="VARCHAR"/> <result property="updateBy" column="update_by" jdbcType="VARCHAR"/>
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/> <result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
<result property="remark" column="remark" jdbcType="VARCHAR"/> <result property="remark" column="remark" jdbcType="VARCHAR"/>
<result property="afterTime" column="after_time" jdbcType="TIMESTAMP"/>
<result property="afterName" column="after_name" jdbcType="VARCHAR"/>
<result property="afterRule" column="after_rule" jdbcType="VARCHAR"/>
<result property="state" column="state" jdbcType="VARCHAR"/>
<result property="isDissolve" column="is_dissolve" jdbcType="VARCHAR"/>
</resultMap> </resultMap>
<sql id="Base_Column_List"> <sql id="Base_Column_List">

Loading…
Cancel
Save