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.
97 lines
2.3 KiB
97 lines
2.3 KiB
package jnpf.entity; |
|
|
|
import com.baomidou.mybatisplus.annotation.IdType; |
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
import com.baomidou.mybatisplus.annotation.TableId; |
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
import lombok.AllArgsConstructor; |
|
import lombok.Builder; |
|
import lombok.Data; |
|
import lombok.NoArgsConstructor; |
|
|
|
import java.io.Serializable; |
|
import java.time.LocalDateTime; |
|
|
|
/** |
|
* <p> |
|
* |
|
* </p> |
|
* |
|
* @author admin |
|
* @since 2024-06-11 |
|
*/ |
|
@TableName("bidding_project_subscribe_step") |
|
@Builder |
|
@Data |
|
@AllArgsConstructor |
|
@NoArgsConstructor |
|
//@apiModel(value = "BiddingProjectSubscribeStep对象", description = "") |
|
public class BiddingProjectSubscribeStep implements Serializable { |
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
//@apiModelProperty("主键") |
|
@TableId(value = "id", type = IdType.AUTO) |
|
private Integer id; |
|
|
|
//@apiModelProperty("关联id") |
|
@TableField(value = "relation_main_id") |
|
private String relationMainId; |
|
|
|
//@apiModelProperty("关联类型") |
|
@TableField(value = "relation_type") |
|
|
|
private String relationType; |
|
|
|
//@apiModelProperty("子单关联id") |
|
@TableField(value = "relation_child_id") |
|
|
|
private String relationChildId; |
|
|
|
//@apiModelProperty("处理类型") |
|
@TableField(value = "deal_type") |
|
|
|
private String dealType; |
|
|
|
//@apiModelProperty("处理类型名称") |
|
@TableField(value = "deal_type_name") |
|
|
|
private String dealTypeName; |
|
|
|
//@apiModelProperty("第三方关联id") |
|
@TableField(value = "other_relation_id") |
|
|
|
private String otherRelationId; |
|
|
|
//@apiModelProperty("描述") |
|
@TableField(value = "remake") |
|
|
|
private String remake; |
|
|
|
//@apiModelProperty("创建时间") |
|
@TableField(value = "create_time") |
|
|
|
private LocalDateTime createTime; |
|
|
|
//@apiModelProperty("创建人id") |
|
@TableField(value = "create_user_id") |
|
|
|
private String createUserId; |
|
|
|
//@apiModelProperty("创建人姓名") |
|
@TableField(value = "create_user_name") |
|
|
|
private String createUserName; |
|
|
|
//@apiModelProperty("创建者组织id") |
|
@TableField(value = "create_organization_id") |
|
|
|
private String createOrganizationId; |
|
|
|
//@apiModelProperty("创建人组织名称") |
|
@TableField(value = "create_organization_name") |
|
|
|
private String createOrganizationName; |
|
|
|
|
|
}
|
|
|