93 lines
1.5 KiB
Plaintext
93 lines
1.5 KiB
Plaintext
package com.cmeim.basic.po;
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
import lombok.Data;
|
|
|
|
import javax.persistence.*;
|
|
import java.util.List;
|
|
|
|
@Data
|
|
@Entity
|
|
@Table(name = "ba_projinfo")
|
|
public class BaProjinfo {
|
|
|
|
/**
|
|
* null
|
|
*/
|
|
@Id
|
|
@GeneratedValue(strategy=GenerationType.IDENTITY)
|
|
@Column(name = "id")
|
|
private Long id;
|
|
|
|
/**
|
|
* null
|
|
*/
|
|
@Column(name = "name")
|
|
private String name;
|
|
|
|
/**
|
|
* null
|
|
*/
|
|
@Column(name = "type")
|
|
private Integer type;
|
|
|
|
/**
|
|
* null
|
|
*/
|
|
@Column(name = "target_value")
|
|
private String targetValue;
|
|
|
|
/**
|
|
* null
|
|
*/
|
|
@Column(name = "to_trial_production_time")
|
|
private String toTrialProductionTime;
|
|
|
|
/**
|
|
* null
|
|
*/
|
|
@Column(name = "trial_production_time")
|
|
private String trialProductionTime;
|
|
|
|
/**
|
|
* null
|
|
*/
|
|
@Column(name = "creattime")
|
|
private String creattime;
|
|
|
|
/**
|
|
* null
|
|
*/
|
|
@Column(name = "creator")
|
|
private String creator;
|
|
|
|
/**
|
|
* null
|
|
*/
|
|
@Column(name = "updatetime")
|
|
private String updatetime;
|
|
|
|
/**
|
|
* null
|
|
*/
|
|
@Column(name = "updateuser")
|
|
private String updateuser;
|
|
|
|
@Transient
|
|
@ApiParam(value = "创建时间集合")
|
|
private List<String> createdDtList;
|
|
|
|
@Transient
|
|
@ApiParam(value = "更新时间集合")
|
|
private List<String> updatedDtList;
|
|
|
|
@Transient
|
|
@ApiParam(value = "转试产时间集合")
|
|
private List<String> toTrialProductionTimeList;
|
|
|
|
@Transient
|
|
@ApiParam(value = "转量产时间集合")
|
|
private List<String> trialProductionTimeList;
|
|
|
|
}
|