package com.panzhihua.service_community.entity; import java.io.Serializable; import lombok.Data; /** * 换新车-车型子规格表(ComChangeCarModelSpecsChildren)实体类 * * @author lyq * @since 2022-04-07 13:55:33 */ @Data public class ComChangeCarModelSpecsChildren implements Serializable { private static final long serialVersionUID = 811675617093500164L; /** * 主键id */ private Long id; /** * 主规格id */ private Long specsId; /** * 子规格名称 */ private String name; /** * 是否删除(1.是 2.否) */ private Integer isDel; /** * 是否删除(1.是 2.否) */ public interface IsDel{ int YES = 1; int NO = 2; } }