4 changed files with 58 additions and 11 deletions
@ -0,0 +1,24 @@ |
|||||
|
package com.kms.yg.sz.domain; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
import com.shuili.common.core.domain.BaseEntity; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.util.Date; |
||||
|
|
||||
|
@Data |
||||
|
@TableName("att_waga_code") |
||||
|
public class AttWagaCode extends BaseEntity { |
||||
|
|
||||
|
private String wagaCode; |
||||
|
|
||||
|
private String wagaCode2; |
||||
|
|
||||
|
private String wagaCode3; |
||||
|
|
||||
|
private String note; |
||||
|
|
||||
|
@JsonFormat(pattern = "yyyy-MM-dd") |
||||
|
private Date updateDate; |
||||
|
} |
@ -0,0 +1,11 @@ |
|||||
|
package com.kms.yg.sz.mapper; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
|
import com.kms.yg.sz.domain.AttWagaCode; |
||||
|
import com.kms.yg.sz.domain.BsSgcSzAqjc; |
||||
|
import org.apache.ibatis.annotations.Mapper; |
||||
|
import org.springframework.stereotype.Repository; |
||||
|
|
||||
|
@Repository |
||||
|
public interface AttWagaCodeMapper extends BaseMapper<AttWagaCode> { |
||||
|
} |
@ -0,0 +1,11 @@ |
|||||
|
package com.kms.yg.sz.service; |
||||
|
|
||||
|
import com.kms.yg.sz.domain.AttWagaCode; |
||||
|
|
||||
|
import com.kms.yg.sz.mapper.AttWagaCodeMapper; |
||||
|
import com.shuili.common.core.service.BaseService; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
|
||||
|
@Service |
||||
|
public class AttWagaCodeService extends BaseService<AttWagaCodeMapper, AttWagaCode> { |
||||
|
} |
Loading…
Reference in new issue