| | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import org.springblade.core.tenant.mp.TenantEntity; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | |
| | | */ |
| | | @Data |
| | | @TableName("sys_strain") |
| | | public class Strain implements Serializable { |
| | | public class Strain implements Serializable{ |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | |
| | | * 主键id |
| | | */ |
| | | @TableId(value = "id",type = IdType.AUTO) |
| | | private Integer id; |
| | | private Long id; |
| | | |
| | | /** |
| | | * 名称 |
| | |
| | | * 别名 |
| | | */ |
| | | private String alias; |
| | | |
| | | /** |
| | | * 农场id |
| | | */ |
| | | private String deptId; |
| | | |
| | | /** |
| | | * 租户id |
| | | */ |
| | | private String tenantId; |
| | | } |