You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.5 KiB
54 lines
1.5 KiB
package com.psdc.entity;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* @Author:Stone
|
|
* @Project:psdc
|
|
* @Filename:PsdcStrategy
|
|
* @Slogan 致敬大师,致敬未来的你
|
|
* @Date:2023/6/15 16:50:24
|
|
* @Version 1.0
|
|
*/
|
|
@Data
|
|
@Component
|
|
@AllArgsConstructor
|
|
@NoArgsConstructor
|
|
public class PsdcStrategy implements Serializable,Cloneable{
|
|
/** 策略Id */
|
|
private Integer strategyId ;
|
|
/** 用户Id */
|
|
private Long userId ;
|
|
/** 策略名称 */
|
|
private String strategyName ;
|
|
/** 策略码 */
|
|
private Long strategyCode ;
|
|
/** 所属步骤集合【存储场景步骤策略码】 */
|
|
private String scenes ;
|
|
/** 策略描述 */
|
|
private String strategyInfo ;
|
|
/** 创建人 */
|
|
private String createBy ;
|
|
/** 创建时间 */
|
|
private String createTime ;
|
|
/** 修改人 */
|
|
private String updateBy ;
|
|
/** 修改时间 */
|
|
private String updateTime ;
|
|
|
|
public PsdcStrategy(Long userId, String strategyName, Long strategyCode, String scenes, String strategyInfo, String createBy, String createTime) {
|
|
this.userId = userId;
|
|
this.strategyName = strategyName;
|
|
this.strategyCode = strategyCode;
|
|
this.scenes = scenes;
|
|
this.strategyInfo = strategyInfo;
|
|
this.createBy = createBy;
|
|
this.createTime = createTime;
|
|
}
|
|
} |