Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
commit
277d2c851c
@ -0,0 +1,58 @@
|
||||
package cn.estsh.i3plus.pojo.ptl.bean;
|
||||
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author adair.song
|
||||
* @date 2020/03/09 17:41
|
||||
* @desc
|
||||
*/
|
||||
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name = "PTL_PCN_CLEAR")
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api("PTL_PCN数据清理")
|
||||
public class PtlPcnClear extends BaseBean implements Serializable {
|
||||
private static final long serialVersionUID = -1596443273899197995L;
|
||||
|
||||
@Column(name = "PCN_CODE")
|
||||
@ApiParam("PCN代码")
|
||||
private String pcnCode;
|
||||
|
||||
@Column(name = "OBJECT_CODE")
|
||||
@ApiParam("对象代码")
|
||||
private String objectCode;
|
||||
|
||||
@Column(name = "OBJECT_NAME")
|
||||
@ApiParam("对象名称")
|
||||
private String objectName;
|
||||
|
||||
@Column(name = "EXTRACT_CONDITION")
|
||||
@ApiParam("获取数据条件")
|
||||
private String extractCondition;
|
||||
|
||||
@Column(name = "ACTION_FREQUENCY")
|
||||
@ApiParam("执行频率")
|
||||
private Integer actionFrequency;
|
||||
|
||||
@Column(name = "LAST_SYNC_TIME")
|
||||
@ApiParam("上一执行时间")
|
||||
private String lastSyncTime;
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.ptl.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.ptl.bean.PtlPcnClear;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: adair.song
|
||||
* @CreateDate:2019-04-24-17:13
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface PtlPcnClearRepository extends BaseRepository<PtlPcnClear, Long> {
|
||||
}
|
Loading…
Reference in New Issue