package com.usky.vpp.domain; 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.Data; import lombok.EqualsAndHashCode; import java.io.Serializable; import java.math.BigDecimal; import java.time.LocalDate; import java.time.LocalDateTime; /** * vpp_contract */ @Data @EqualsAndHashCode(callSuper = false) @TableName("vpp_contract") public class VppContract implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.ASSIGN_ID) private Long id; @TableField("contract_no") private String contractNo; @TableField("customer_id") private Long customerId; @TableField("template_id") private Long templateId; @TableField("contract_type") private Integer contractType; @TableField("contract_name") private String contractName; @TableField("contract_status") private Integer contractStatus; @TableField("sign_date") private LocalDate signDate; @TableField("effective_date") private LocalDate effectiveDate; @TableField("expire_date") private LocalDate expireDate; @TableField("file_url") private String fileUrl; @TableField("share_ratio") private BigDecimal shareRatio; @TableField("price_json") private String priceJson; @TableField("account_info_json") private String accountInfoJson; private String remark; @TableField("create_time") private LocalDateTime createTime; @TableField("update_time") private LocalDateTime updateTime; @TableField("created_by") private Long createdBy; @TableField("updated_by") private Long updatedBy; @TableField("deleted_at") private LocalDateTime deletedAt; }